init(clientID:issuer:tokenEndpointURL:jwksEndpointURL:audience:)
Creates a configuration with the required values.
Declaration
init(clientID: String, issuer: String, tokenEndpointURL: URL, jwksEndpointURL: URL, audience: String?)Parameters
- clientID:
The OAuth
client_idfor the login. - issuer:
The OAuth
issuerfor validating the token. - tokenEndpointURL:
The token endpoint for login.
- jwksEndpointURL:
The URL that retrieves the JSON Web Key Set (JWKS).
- audience:
The OAuth
audencefor embedded assertions.