File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ def set_token(self, token: str):
33
33
self ._http_client .set_token (token )
34
34
35
35
def get_client_token (self ) -> str :
36
- self ._http_client ._get_client_token ()
36
+ """Generates a Service Client Machine JWT to be used for securing machine to machine requests."""
37
+ return self ._http_client ._get_client_token ()
37
38
38
39
def verify_token (self , token : str ) -> object :
39
40
"""Verify a user access token
@@ -57,7 +58,7 @@ def user_permissions(self) -> UserPermissionsApi:
57
58
58
59
@property
59
60
def users (self ) -> UsersApi :
60
- """Gets the User permissions API to make HTTP Requests with."""
61
+ """Gets the Users API to make HTTP Requests with."""
61
62
return UsersApi (api_client = self ._http_client )
62
63
63
64
@property
@@ -67,7 +68,7 @@ def access_records(self) -> AccessRecordsApi:
67
68
68
69
@property
69
70
def accounts (self ) -> AccountsApi :
70
- """Gets the Authress Accounts API to make HTTP Requests with."""
71
+ """Gets the Authress Admin API to make HTTP Requests with."""
71
72
return AccountsApi (api_client = self ._http_client )
72
73
73
74
@property
You can’t perform that action at this time.
0 commit comments