Skip to main content
Latest
enum BackchannelAuthenticationCompleteRequest.Result
import { BackchannelAuthenticationCompleteRequest } from "https://deno.land/x/authlete_deno@v1.2.10/mod.ts";
const { Result } = BackchannelAuthenticationCompleteRequest;

Failure reasons of authorization requests.

Members

ACCESS_DENIED = 2

The end-user denied the backchannel authentication request.

AUTHORIZED = 1

The end-user was authenticated and has granted authorization to the client application.

TRANSACTION_FAILED = 3

The authorization server could not get the result of end-user authentication and authorization from the authentication device for some reasons.

For example, the authorization server failed to communicate with the authentication device due to a network error, the device did not return a response within a reasonable time, etc.

This result can be used as a generic error.