Class AuthCodeTokenRequest

java.lang.Object
com.ringcentral.definitions.AuthCodeTokenRequest

public class AuthCodeTokenRequest extends Object
Token endpoint request parameters used in the "Authorization Code" and "Authorization code with PKCE" flows with the `authorization_code` grant type
  • Field Details

    • grant_type

      public String grant_type
      Grant type Required Enum: authorization_code
    • code

      public String code
      For `authorization_code` grant type only. User's authorization code Required
    • redirect_uri

      public String redirect_uri
      For `authorization_code` grant type only. This is a callback URI which determines where the response is sent. The value of this parameter must exactly match one of the URIs you have provided for your app upon registration Format: uri
    • code_verifier

      public String code_verifier
      For `authorization_code` grant type only. The code verifier as defined by the PKCE specification - [RFC-7636 "Proof Key for Code Exchange by OAuth Public Clients"](https://datatracker.ietf.org/doc/html/rfc7636)
  • Constructor Details

    • AuthCodeTokenRequest

      public AuthCodeTokenRequest()
  • Method Details