deno.land / x / oauth4webapi@v1.2.2 / docs / functions / processDeviceCodeResponse.md
â–¸ processDeviceCodeResponse(as
, client
, response
, options?
): Promise
<TokenEndpointResponse
| OAuth2Error
>
Validates Device Authorization Grant Response instance to be one coming from the
as.token_endpoint
.
see
RFC 8628 - OAuth 2.0 Device Authorization Grant
Name | Type | Description |
---|---|---|
as |
AuthorizationServer |
Authorization Server Metadata. |
client |
Client |
Client Metadata. |
response |
Response |
Resolved value from deviceCodeGrantRequest. |
options? |
HttpRequestOptions |
- |
Promise
<TokenEndpointResponse
| OAuth2Error
>
Resolves with an object representing the parsed successful response, or an object representing an OAuth 2.0 protocol style error. Use isOAuth2Error to determine if an OAuth 2.0 error was returned.
Version Info