Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/deps/deno_kv_oauth/deps.ts>OAuth2Client

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
class OAuth2Client
import { OAuth2Client } from "https://deno.land/x/netzo@0.4.62/deps/deno_kv_oauth/deps.ts";

Constructors

new
OAuth2Client(config: Readonly<OAuth2ClientConfig>)

Properties

clientCredentials: ClientCredentialsGrant

Implements the Resource Owner Password Credentials Grant.

See RFC6749, section 4.4.

code: AuthorizationCodeGrant

Implements the Authorization Code Grant.

See RFC6749, section 4.1.

implicit: ImplicitGrant

Implements the Implicit Grant.

See RFC6749, section 4.2.

refreshToken: RefreshTokenGrant

Implements the Refresh Token Grant.

See RFC6749, section 6.

ropc: ResourceOwnerPasswordCredentialsGrant

Implements the Resource Owner Password Credentials Grant.

See RFC6749, section 4.3.