API Authorization¶
Authorizing calls against Globus can be a complex process. In particular, if you are using Refresh Tokens and short-lived Access Tokens, you may need to take particular care managing your Authorization state.
Within the SDK, we solve this problem by using GlobusAuthorizers, which are attached to clients.
These are a very simple class of generic objects which define a way of getting
an up-to-date Authorization header, and trying to handle a 401 (if that
header is expired).
Whenever using the Service Clients, you should be passing in an authorizer when you create a new client unless otherwise specified.
The type of authorizer you will use depends very much on your application, but if you want examples you should look at the examples section. It may help to start with the examples and come back to the full documentation afterwards.
The Authorizer Interface¶
We define the interface for GlobusAuthorizer objects in terms of an
Abstract Base Class:
-
class
globus_sdk.authorizers.base.GlobusAuthorizer[source]¶ A
GlobusAuthorizeris a very simple object which generates valid Authorization headers. It may also have handling for responses that indicate that it has provided an invalid Authorization header.-
abstract
set_authorization_header()[source]¶ Takes a dict of headers, and adds to it a mapping of
{"Authorization": "..."}per this object’s type of Authorization. Importantly, if anAuthorizationheader is already set, this method is expected to overwrite it.
-
handle_missing_authorization(*args, **kwargs)[source]¶ This operation should be called if a request is made with an Authorization header generated by this object which returns a 401 (HTTP Unauthorized). If the
GlobusAuthorizerthinks that it can take some action to remedy this, it should update its state and returnTrue. If the Authorizer cannot do anything in the event of a 401, this may update state, but importantly returnsFalse.By default, this always returns
Falseand takes no other action.
-
abstract
GlobusAuthorizer objects that fetch new access tokens when their existing
ones expire or a 401 is received implement the RenewingAuthorizer class
-
class
globus_sdk.authorizers.renewing.RenewingAuthorizer(access_token=None, expires_at=None, on_refresh=None)[source]¶ Bases:
globus_sdk.authorizers.base.GlobusAuthorizerA
RenewingAuthorizeris an abstract superclass to any authorizer that needs to get new Access Tokens in order to form Authorization headers.It may be passed an initial Access Token, but if so must also be passed an expires_at value for that token.
It provides methods that handle the logic for checking and adjusting expiration time, callbacks on renewal, and 401 handling.
To make an authorizer that implements this class implement the _get_token_response and _extract_token_data methods for that authorization type,
- Parameters:
access_token (str, optional) – Initial Access Token to use, only used if
expires_atis also setexpires_at (int, optional) – Expiration time for the starting
access_tokenexpressed as a POSIX timestamp (i.e. seconds since the epoch)on_refresh (callable, optiona) – A callback which is triggered any time this authorizer fetches a new access_token. The
on_refreshcallable is invoked on theOAuthTokenResponseobject resulting from the token being refreshed. It should take only one argument, the token response object. This is useful for implementing storage for Access Tokens, as theon_refreshcallback can be used to update the Access Tokens and their expiration times.
Authorizer Types¶
All of these types of authorizers can be imported from
globus_sdk.authorizers.
-
class
globus_sdk.NullAuthorizer[source]¶ Bases:
globus_sdk.authorizers.base.GlobusAuthorizerThis Authorizer implements No Authentication – as in, it ensures that there is no Authorization header.
-
class
globus_sdk.BasicAuthorizer(username, password)[source]¶ Bases:
globus_sdk.authorizers.base.GlobusAuthorizerThis Authorizer implements Basic Authentication. Given a “username” and “password”, they are sent base64 encoded in the header.
- Parameters:
username (str) – Username component for Basic Auth
password (str) – Password component for Basic Auth
-
class
globus_sdk.AccessTokenAuthorizer(access_token)[source]¶ Bases:
globus_sdk.authorizers.base.GlobusAuthorizerImplements Authorization using a single Access Token with no Refresh Tokens. This is sent as a Bearer token in the header – basically unadorned.
- Parameters:
access_token (str) – An access token for Globus Auth
-
class
globus_sdk.RefreshTokenAuthorizer(refresh_token, auth_client, access_token=None, expires_at=None, on_refresh=None)[source]¶ Bases:
globus_sdk.authorizers.renewing.RenewingAuthorizerImplements Authorization using a Refresh Token to periodically fetch renewed Access Tokens. It may be initialized with an Access Token, or it will fetch one the first time that
set_authorization_header()is called.Example usage looks something like this:
>>> import globus_sdk >>> auth_client = globus_sdk.AuthClient(client_id=..., client_secret=...) >>> # do some flow to get a refresh token from auth_client >>> rt_authorizer = globus_sdk.RefreshTokenAuthorizer( >>> refresh_token, auth_client) >>> # create a new client >>> transfer_client = globus_sdk.TransferClient(authorizer=rt_authorizer)
anything that inherits from
BaseClient, so at leastTransferClientandAuthClientwill automatically handle usage of theRefreshTokenAuthorizer.- Parameters:
refresh_token (str) – Refresh Token for Globus Auth
auth_client (
AuthClient) –AuthClientcapable of using therefresh_tokenaccess_token (str, optional) – Initial Access Token to use, only used if
expires_atis also setexpires_at (int, optional) – Expiration time for the starting
access_tokenexpressed as a POSIX timestamp (i.e. seconds since the epoch)on_refresh (callable, optional) – A callback which is triggered any time this authorizer fetches a new access_token. The
on_refreshcallable is invoked on theOAuthTokenResponseobject resulting from the token being refreshed. It should take only one argument, the token response object. This is useful for implementing storage for Access Tokens, as theon_refreshcallback can be used to update the Access Tokens and their expiration times.
-
class
globus_sdk.ClientCredentialsAuthorizer(confidential_client, scopes, access_token=None, expires_at=None, on_refresh=None)[source]¶ Bases:
globus_sdk.authorizers.renewing.RenewingAuthorizerImplementation of a RenewingAuthorizer that renews confidential app client Access Tokens using a ConfidentialAppAuthClient and a set of scopes to fetch a new Access Token when the old one expires.
Example usage looks something like this:
>>> import globus_sdk >>> confidential_client = globus_sdk.ConfidentialAppAuthClient( client_id=..., client_secret=...) >>> scopes = "..." >>> cc_authorizer = globus_sdk.ClientCredentialsAuthorizer( >>> confidential_client, scopes) >>> # create a new client >>> transfer_client = globus_sdk.TransferClient(authorizer=cc_authorizer)
any client that inherits from
BaseClientshould be able to use a ClientCredentialsAuthorizer to act as the client itself.- Parameters:
confidential_client (
ConfidentialAppAuthClient) – client object with a valid id and client secretscopes (str) – A string of space-separated scope names being requested for the access tokens that will be used for the Authorization header. These scopes must all be for the same resource server, or else the token response will have multiple access tokens.
access_token (str) – Initial Access Token to use, only used if
expires_atis also set. Must be requested with the same set of scopes passed to this authorizer.expires_at (int, optional) – Expiration time for the starting
access_tokenexpressed as a POSIX timestamp (i.e. seconds since the epoch)on_refresh (callable, optiona) – A callback which is triggered any time this authorizer fetches a new access_token. The
on_refreshcallable is invoked on theOAuthTokenResponseobject resulting from the token being refreshed. It should take only one argument, the token response object. This is useful for implementing storage for Access Tokens, as theon_refreshcallback can be used to update the Access Tokens and their expiration times.