Introduction
When developing web applications using a server-side framework, use the following procedures to set up your authorization.
Before you begin
This guide requires you to have:
- A registered web app. If you have not created an application, open the My Apps page under your Profile menu and click the Register New button. For this guide, the application type is Web App.
- A redirect URI of
https://developer.bentley.com/redirect-tutorial
. Add this redirect URI during app registration, or on the App Details for a previously registered application. The App Details page can be accessed through the My Apps page. - The
client_id
and theclient_secret
supplied when you create your application. Make sure to save this data in a secure location.
User authorization code flow
Web applications can use the OAuth 2.0 Authorization Code Flow to enable data owners to authorize third-party apps to access user data. This flow includes features like customer login and consent handling to obtain authorization from the resource owner.
The following steps provide an overview of the process.
- The application makes a request to the authorization server endpoint.
- The end-user provides their authentication information and consents for the application to access resources on their behalf.
- The authorization server returns an authorization code to the Redirect URI specified when creating the application.
- The application uses the authorization code to obtain an access token from the authorization server.
- The application uses the access token to call the API on behalf of the user.
Set up authorization for your app
The following guide steps you through retrieving an access token for your web app. Once you have your app registered, you can begin to obtain the access token.
Obtain an access token
To obtain an access token for your app, follow these steps:
-
When the user opens the web app, redirect them to the authorization server endpoint.
https://ims.bentley.com/connect/authorize?client_id=<client_id>&redirect_uri=<redirect_uri>&scope=itwin-platform+offline_access&response_type=codeThe request for an authorization code requires the following parameters:
ParameterDescriptionresponse_typeSet tocode
to indicate that an authorization code is needed.client_idThe ID of the app you created. If you forgot the ID, find it on the My Apps page. Locate your app in the list, and the Client ID is in the same-named column.redirect_uriThe callback URL you entered when registering your application. The returned authorization code is sent to this URL. In this case, the callback URL must behttps://developer.bentley.com/redirect-tutorial
.scopeAdd theitwin-platform
scope assigned to your app during registration. When requesting a refresh token, include the scopeoffline_access
. Separate multiple scopes with a space. Your end user will consent to the app accessing this information on their behalf during the login process.state(Optional) Used by the client to maintain state between a request and a callback. Recommended to prevent cross-site request forgery. The authorization server includes this value when redirecting the user-agent to the client.Redirect -
The user signs in to authenticate and consents for the application to access resources on their behalf. This page is managed by the Bentley authorization server and does not require any implementation in your application.
Once authenticated, the Bentley authorization server returns an authorization code to the Redirect URI registered with your application. Extract the
code
in the response from theredirect_uri
.https://example-rediect-uri/?code=<code> -
Send a request to the token endpoint to exchange the authorization code for an access token.
POSThttps://ims.bentley.com/connect/tokenThe authorization request requires the following parameters:
Field NameDescriptionclient_idIdentification generated during application creation. Found in the My Apps page or in the first step if generated during the tutorial.client_secretSecret created during application creation.grant_typeSet toauthorization_code
Indicates the type of grant being used. This tells the service you are exchanging the code for a token.codeThis is the authorization code returned in the previous request.redirect_uriThe callback URL you entered when registering your application. This URL must match the URL provided in the initial request. -
The authorization server confirms the information sent in the request and returns an access token. Bentley's authorization server completes this step. There is no implementation needed in your application. A successful response includes the
access_token
, an expiry of 3600 seconds, and arefresh_token
. Tokens are Bearer type, which must be specified in your API calls. -
Use the access token to call the API. Tokens are added to the
Authorization
header withBearer
type in subsequent requests.
Successfully sending a request to an API requires the end user to have the correct account permissions. Use the Access Control API to ensure your user can access the required resources.
Request a new access token with a refresh token
When your access token is close to the expiry time, you must request a new one using the refresh token provided in the original request. The response contains a new token and a new refresh token. Tokens are Bearer type, which must be specified in your API calls.
refresh_token
Indicates the type of grant being used. This tells the service you are requesting a new access_token
with a refresh_token
.refresh_token
you include is the same one received from the previous request.Test your token
If you received a 200 OK
response to your token request, you have successfully obtained a token. You can use this token to call various iTwin Platform APIs. You can try making an API call to users/me
endpoint to test your token. On success, this request returns the profile information for the user account associated with the token received.
Remember, the iTwin Platform Base URI is api.bentley.com
.