Authorization Code

Using the authorization code flow

Authorization Code

In the Authorization Code flow, a code is returned to the client through a browser redirect after the user (resource owner) gives consent to Identity (authorization server). The client subsequently exchanges the authorization_code for an access_token. Users’ credentials are never exposed to the application (client).

The Authorization Code grant type is intended to be used by user-facing web applications with a server-side component. When the user grants authorization, the Identity authorization endpoint provides the client with a short-lived authorization code.

How it works

  • The application opens a browser to send the user to the authorization server login page
  • The user performs a standard login with Trimble Identity credentials
  • The user is redirected with the Authorization Code in the query string
  • Trimble Identity returns an ID token to an application which validates the signature
  • The application exchanges the Authorization Code for an access token

What you need

You will need the following information from the Developer Console.

  • Client name
  • Client id
  • Client secret
  • Callback url

Authorization Request

The first request is a GET or redirect to the authorization endpoint (/authorize) performed in a web browser. The /authorize endpoint supports three response_types: code, id_token, token. If code is present in your parameters, JWTs are not needed for authorization.

If the request contains the OpenID scope, it is also considered an authentication (OpenID Connect) request, and an ID token is issued.

get

https://id.trimble.com/oauth/authorize

Parameters

ParameterDescription
stateThis field is used to return data (like a return URL) after sign-in with an access code.
client_idApplication ID registered for the application (UUID)
response_typecode
scopeopenid and applicationname (Scope is space delimited)
redirect_uriRedirect URL registered with Identity
ui_locales (optional)Local value
prompt (optional)How Trimble Identity displays the login UI. See below for more information
login_hint (optional)Allows an application to specify the email address for use in the sign in or sign up page if you are using prompt=create

Prompt Options

Possible values for the optional prompt parameter

Prompt valueDescription
noneTrimble Identity will not display any UI, if there is no SSO session the /authorize call will redirect to the caller with a error
loginTrimble Identity will always display the sign in UI, regardless of whether an SSO session exists
createTrimble Identity will display the sign up page rather than the sign in page

Authorization Response

The following is an example of the callback made to your callback endpoint. You will need to parse the code parameter from the callback to use in your token call.

Terminal window
http://localhost:5173/auth/callback?
code=us_9fd5fee3f3c74267910f8ed7c71c85a8&
state=Hn4K-n1m00000CiUUV-vOUNcOJZ8Jh_4shoo

Token Request

After acquiring the authorization code, you exchange an authorization code for an access token through the resource server.

post

https://id.trimble.com/oauth/token

Headers

HeaderDescription
AuthorizationBasic credentials
Acceptapplication/json
Content-Typeapplication/x-www-form-urlencoded

Body

BodyDescription
grant_typeauthorization_code
codeThe authorization code returned from the above call
client_idApplication ID registered for the application
redirect_urlCallback URL registered with Identity

Token Response

If the token request succeeds, the server responds with a 200 response code.

Response fields

FieldDescription
access_tokenThe access token’s primary function is to authorize a user.
refresh_tokenA refresh token is used to obtain access tokens after an initial authorization grant without interaction with the end-user.
expires_inThe duration of time the access token is granted for in seconds
id_tokenAn ID token is an artifact that proves the user has been authenticated. The ID token contains information about the user, such as user name and email, and is used to authenticate a user.

Example response

Example response
{
"access_token": "8aca1...",
  "refresh_token": "861e9...",
  "expires_in": 3600,
  "id_token": "eyJhbG...",
}

Examples

Postman

Fork this Postman collection into your own workspace to quickly get started using Authorization Code.

You need the following from your Developer Console application:

  • Client name
  • Client id
  • Client secret
  • Callback url

Run in Postman

© 2023, Trimble Inc.

Dedicated to the world's tomorrow, Trimble is a technology company delivering solutions that enable our customers to work in new ways to measure, build, grow and move goods for a better quality of life. Core technologies in positioning, modeling, connectivity and data analytics connect the digital and physical worlds to improve productivity, quality, safety, transparency and sustainability. From purpose-built products and enterprise lifecycle solutions to industry cloud services, Trimble is transforming critical industries such as construction, geospatial, agriculture and transportation to power an interconnected world of work.