API calls can be authorized either by providing an API key or an OAuth access token.
- Usage with HTTP
AuthorizationHeader:Bearer XXXXX - Usage with gRPC call credentials (in the
authorizationheader):Bearer XXXXX - Usage with MQTT: Username: Gateway ID or Application ID, Password:
XXXXX
Here, XXXXX is either a valid API key or a valid OAuth access token.
API keys are the simplest way of authorization. API keys do not expire, are revokable, and they are scoped to the entity they were generated from:
- User API keys
- Application API keys
- Gateway API keys
- Organization API keys
The Things Network uses the OAuth 2.0 protocol for authentication and authorization.
To use this method, you first need an OAuth client registration:
- The client ID uniquely identifies the OAuth client. Its restrictions are the same as for any other ID in TTN.
- The description is shown to the user when you request authorization.
- The scope indicates what actions your OAuth client is allowed to perform. This is shown to the user when you request authorization. You can select the actions your OAuth client needs on registration, a full list can also be found in our source code.
- The redirect URI is where the user is redirected after authorizing your OAuth client.
- The client secret is issued when your OAuth client Registration is accepted by a network admin.
After your OAuth client Registration is accepted, you can request authorization by sending the user to the authorization URL:
https://<HOSTNAME>/oauth/authorize?client_id=<CLIENT-ID>&redirect_uri=<REDIRECT-URI>&state=<STATE>&response_type=code
- The
HOSTNAMEis the hostname of the Identity Server. - The
client_idis the client ID of your OAuth client. - The
response_typeis alwayscode. - The
redirect_urimust exactly match the redirect URI of your OAuth client registration if supplied.- We allow multiple redirect URIs in your OAuth client registration in the future, in which case the
REDIRECT-URImust exactly match one of those.
- We allow multiple redirect URIs in your OAuth client registration in the future, in which case the
- The optional
scopeis ignored by the Identity Server. All scopes defined in your OAuth client registration will be requested. - The optional
statecan be used to mitigate CSRF attacks. It is recommended to supply this.
The Identity Server will prompt the user with a view asking to authorize your OAuth client. They will see the client ID, description, requested scope and redirect URI. If they accept the authorization, they will be redirected to your redirect URI with an authorization code:
https://<REDIRECT-URI>/?code=<AUTHORIZATION-CODE>
Your OAuth client can exchange this authorization code for an OAuth access token by making a POST request to the token URL:
https://<HOSTNAME>/oauth/token
The request must use Basic Auth (RFC7617) with the client ID as username and the client secret as password.
The authorization code is sent in the request payload:
{
"code": "<AUTHORIZATION-CODE>",
"grant_type": "authorization_code"
}
The response contains the OAuth access token and an indication of when it expires. If the network admin gave your OAuth client the refresh token grant, the response also contains a refresh token.
{
"access_token": "XXXXX",
"token_type": "bearer",
"expires_in": "3600",
"refresh_token": "YYYYY"
}
You can now use the OAuth access token until it expires.
If you have a refresh token, you can exchange this for a new OAuth access token after the old one expires by making another POST request to the token URL, similar to the exchange of the authorization code you did before:
https://<HOSTNAME>/oauth/token
The request must use Basic Auth (RFC7617) with the client ID as username and the client secret as password.
The refresh token is sent in the request payload:
{
"code": "<REFRESH-TOKEN>",
"grant_type": "refresh_token"
}
The response again contains the OAuth access token and an indication of when it expires. The response also contains a new refresh token.
{
"access_token": "XXXXX",
"token_type": "bearer",
"expires_in": "3600",
"refresh_token": "YYYYY"
}