Code Exchange Request
Class representation of a Nylas code exchange request
Constructors
Link copied to clipboard
public CodeExchangeRequest CodeExchangeRequest(@Json(name = "redirect_uri" ) String redirectUri, @Json(name = "code" ) String code, @Json(name = "client_id" ) String clientId, @Json(name = "client_secret" ) String clientSecret, @Json(name = "code_verifier" ) String codeVerifier)
Types
Link copied to clipboard
A builder for creating a CodeExchangeRequest.
Properties
Link copied to clipboard
Client secret of the application.
Link copied to clipboard
The original plain text code verifier (code_challenge) used in the initial authorization request (PKCE).
Link copied to clipboard
Should match the same redirect URI that was used for getting the code during the initial authorization request.
Functions
Link copied to clipboard
Client ID of the application.
Link copied to clipboard
Client secret of the application.
Link copied to clipboard
The original plain text code verifier (code_challenge) used in the initial authorization request (PKCE).
Link copied to clipboard
Should match the same redirect URI that was used for getting the code during the initial authorization request.
Link copied to clipboard
Client ID of the application.
Link copied to clipboard
Client secret of the application.