Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
enum TokenCreateResponse.Action
import { TokenCreateResponse } from "https://deno.land/x/authlete_deno@v1.2.10/src/dto/token_create_response.ts";
const { Action } = TokenCreateResponse;

The next action that the service implementation should take.

Members

BAD_REQUEST

The request from the caller was wrong. For example, this happens when the grantType request parameter was missing.

FORBIDDEN

The request from the caller was not allowed. For example, this happens when the client application identified by the clientId request parameter does not belong to the service identified by the API key used for the API call.

INTERNAL_SERVER_ERROR

An error occurred on Authlete side.

OK

An access token and optionally a refresh token were issued successfully.