Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

OAuth 2.0 client certificate requests and responses


May 23, 2021 OAuth 2.0 Series


Table of contents


Client certificate requests and responses

Client certificate authorization contains the following parameters:

grant_type Have to. Must be set to the client certificate.
scope Optional. The scope of the authorization.

Client Authorization Response: The Client Authorization Response contains the following parameters:

{ "access_token"  : "...",
  "token_type"    : "...",
  "expires_in"    : "...",
}

access_type is the access token assigned by the authorization server. t oken_type is the type of token assigned by the authorized server. e xpires_in is how many seconds after the access token, it is no longer valid. A ccess token expiration values are optional. New tokens should not be included in requests of this type of authorization.