Understanding

Access is a way to get and store a user's credentials and build a sustainable authentication flow for payment calls.

AccessToken WorkFlow

This flowchart covers the basic authentication workflow for getting a user's access token.

Token Refresh Workflow

Configure to intercept requests and refresh tokens based on API responses

About tokens

Access Token

An access token is authentication information for user identification that is used when making API calls.

Payload

Refresh Token

A refresh token is a token whose purpose is to renew the expiration date of an access token. It has a 12-digit randomly generated string.

In order to refresh access tokens, you need to manage refresh tokens in memory or in a database.

Last updated