NextGen Knowledge Center

OAuth 2.0 Token Verification

This feature performs a GET request to an external HTTP endpoint, passing an OAuth access token as either a request header or query parameter. If the response code from this endpoint is >= 400, the request will be rejected and not processed through the channel.

ItemNameDescription
AAccess Token LocationDetermines where the access token is located in client requests.
  • Request Header: The field to the right specifies the HTTP header to pull the access token from. This same header will be sent in the request to the verification URL.
  • Query Parameter: The field to the right specifies the query parameter to pull the access token from. This same parameter will be sent in the request to the verification URL.
BVerification URLThe HTTP URL to perform a GET request to for access token verification. If the response code is >= 400, the authentication attempt is rejected by the server, and the request will not be processed through the channel.