Instance Property

tokenRequestParams

The HTTP body parameters for the token request. Read-only.

Declaration

var tokenRequestParams: [String : String] { get }

Discussion

The key/value pair for “code” is handled by the authorizationResponseHandler(for:) method.

Other than the key/value pair for “code” this property is:


[
    "grant_type": "authorization_code",
    "redirect_uri": redirectURI,
    "client_id": clientID,
    "code_verifier": codeVerifier
]

See Also

Read-only Properties