Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
class AuthorizationEndpoint
extends BaseEndpoint
import { AuthorizationEndpoint } from "https://deno.land/x/authlete_deno_fen_oauth_server@v1.0.0/src/endpoint/authorization_endpoint.ts";

Methods

private
callAuthorization(parameters: parametersType)

Call Authlete /api/auth/authorization API.

private
handle(parameters: parametersType)

Handle cases where action parameter in a response from Authlete /api/auth/authorization API is other than INTERACTION or NO_INTERACTION.

Handle the case where action parameter in a response from Authlete /api/auth/authorization API is INTERACTION.

Handle the case where action parameter in a response from Authlete /api/auth/authorization API is NO_INTERACTION.

get()

The authorization endpoint for GET method.

RFC6749 3.1 Authorization Endpoint says that the authorization endpoint MUST support GET method.

The authorization endpoint for POST method.

RFC6749 3.1 Authorization Endpoint says that the authorization endpoint MAY support POST method.

In addition, OpenID Connect Core 1.0, 3.1.2.1. Authentication Request} says that the authorization endpoint MUST support POST method.