glebs/request
Functions
pub fn create_authorization_request_url(
config: OAuth2ClientConfig,
) -> Promise(Result(#(Uri, String), String))
Create an authorization request url from the given config
You can redirect the user to the returned url to initiate the authorization flow. Once authorization is complete, the user will be redirected back to the redirect_uri in the config with the authorization code in the query parameter.
You can then exchange the authorization code for an access token using the
get_access_token
function.
pub fn get_access_token(
config: OAuth2ClientConfig,
verifier: String,
code: String,
) -> Promise(Result(TokenResponse, String))
pub fn token_resp_decoder() -> Decoder(TokenResponse)