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):
3333 self ._http_client .set_token (token )
3434
3535 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 ()
3738
3839 def verify_token (self , token : str ) -> object :
3940 """Verify a user access token
@@ -57,7 +58,7 @@ def user_permissions(self) -> UserPermissionsApi:
5758
5859 @property
5960 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."""
6162 return UsersApi (api_client = self ._http_client )
6263
6364 @property
@@ -67,7 +68,7 @@ def access_records(self) -> AccessRecordsApi:
6768
6869 @property
6970 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."""
7172 return AccountsApi (api_client = self ._http_client )
7273
7374 @property
You can’t perform that action at this time.
0 commit comments