Authorization Code Flow
Basics
The authorization code flow is best suited for web applications with a client running on the server side.
Resource owners access the application via an HTML user interface rendered in a user-agent on the device used by the resource owner.
The application credentials as well as any access token issued to the application are stored on the web server and are not exposed to or accessible by the resource owner.
The application sends a user to Space via a link that also includes the scope of required resources. After the user logs in to Space, Space redirects the user back to the application using the specified redirect URI. The redirect also contains an authorization code. The application uses the authorization code to obtain an access token from Space.
To enable the flow for an application, during the application registration, select the Authorization Code Flow checkbox. The redirect URIs should be specified in the Redirect URIs field.
If you use Space SDK in your application, you can implement the flow with the help of the
SpaceHttpClient().withCallContext()
method.For more details on the flow, refer to the Authorization code flow specification.
Initial request
To start the authentication process, the application should redirect the user's browser to the authentication endpoint <Space service URL>/oauth/auth
in the following format:
For example:
To instruct Space to issue a refresh token, add the access_type=offline
parameter to your request:
To obtain an access token from Space, your application needs to provide values for the following parameters in authorization requests:
Parameter | Description |
---|---|
response_type | Specifies the grant type in an OAuth 2.0 request. Set value to code . |
state | An identifier for the current application state. For example, it can be a key for a local storage object that contains information about the location of the current user in the application. |
redirect_uri | A URI in your application that can handle responses from Space. |
request_credentials | A parameter that determines whether the user should be asked to log in. The following values are valid:
|
client_id | The ID assigned to your application when you register it in Space. To get the client ID, go to ![]() |
client_secret | The private identifier assigned to your application when you register it in Space. To get the client secret, go to ![]() |
scope | A space separated list of rights required to access specific resources in Space. The rights are grouped in four categories: Global, Profile, Team, Project. Use the following syntax to specify the rights (shown here in BNF notation):
<SCOPE> ::= <ALL> | <TOKEN_LIST>
<ALL> ::= '**'
<TOKEN_LIST> ::= <TOKEN> (' ' <TOKEN>)*
<TOKEN> ::= <GLOBAL_PERMISSIONS_TOKEN> | <ENTITY_PERMISSIONS_TOKEN>
<GLOBAL_PERMISSIONS_TOKEN> ::= <PERMISSIONS>
<ENTITY_PERMISSIONS_TOKEN> ::= <ENTITY> ':' <PERMISSIONS>
<ENTITY> ::= 'Team' | 'Project' | 'Profile' | 'etc.'
<PERMISSIONS> ::= <ALL_PERMISSIONS> | <PERMISSION_LIST>
<ALL_PERMISSIONS> ::= '*'
<PERMISSION_LIST> ::= <PERMISSION> (',' <PERMISSION>)*
Wildcards are accepted. For global rights, category is omitted. Example:
AddNewProfile,AddNewTeam Team:EditTeam Profile:EditAbsences,EditLanguages Project:*
The rights you specify in |
access_type | Indicates whether the application requires access to Space when the user is not online. Allowed values: online (used by default) and offline . If the application requires refreshing access tokens when the user is not online, use the offline value. In this case Space issues a refresh token for the application the first time it exchanges an authorization code for a user. Refer to the Refresh Token page for more information. |
Handling response
If the resource owner grants the access, Space issues an authorization code and delivers it to the application by adding the following parameters to the query component of the redirection URI using the application/x-www-form-urlencoded
format:
Parameter | Description |
---|---|
code | The authorization code generated by Space. The authorization code will expire shortly after it is issued to mitigate the risk of leaks. The application must not use the authorization code more than once. If an authorization code is used more than once, Space will deny the request. The authorization code is bound to the application identifier and redirection URI. |
state | The exact value received from the application in the authorization request. |
Example: Space redirects the browser by sending the following HTTP response:
The application must ignore unrecognized response parameters.
Handling error response
If the resource owner denies the access request or if the request fails for reasons other than a missing or invalid redirection URI, Space informs the application by adding the following parameters to the query component of the redirection URI using the application/x-www-form-urlencoded
format:
- error
A single ASCII [USASCII] error code from the following:
invalid_request
— The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.unauthorized_client
— The application is not authorized to request an authorization code using this method.access_denied
— The resource owner or Space denied the request.unsupported_response_type
— Space does not support obtaining an authorization code using this method.invalid_scope
— The requested scope is invalid, unknown, or malformed.
- error_description
- Human-readable ASCII [USASCII] text providing additional information, used to assist the application developer in understanding what went wrong.
Exchanging authorization code for an access token
After the application receives the code it can exchange it for an access token.
The application makes a request to the Space token endpoint by sending the following parameters using the application/x-www-form-urlencoded
format with a character encoding of UTF-8 in the HTTP request entity-body:
Example:
Handling Access Token Response
If the access token request is valid and authorized, Space issues an access token. If the request has failed or is invalid, the Space server returns an error response.
Example of a successful response: