PKCEAuthURL

public final class PKCEAuthURL

Class representing the object containing the OAuth 2.0 URL as well as the hashed secret.

Constructors

Link copied to clipboard
public PKCEAuthURL PKCEAuthURL(    @Json(name = "url") String url,     @Json(name = "secret") String secret,     @Json(name = "secret_hash") String secretHash)

Properties

Link copied to clipboard
private final String secret

Server-side challenge used in the OAuth 2.0 flow

Link copied to clipboard
private final String secretHash

SHA-256 hash of the secret

Link copied to clipboard
private final String url

The URL for hosted authentication

Functions

Link copied to clipboard
public final String getSecret()

Server-side challenge used in the OAuth 2.0 flow

Link copied to clipboard
public final String getSecretHash()

SHA-256 hash of the secret

Link copied to clipboard
public final String getUrl()

The URL for hosted authentication