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

x/netzo/apis/create-api/auth/oauth2.ts>getTokenClientCredentialsFlow

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
variable getTokenClientCredentialsFlow
import { getTokenClientCredentialsFlow } from "https://deno.land/x/netzo@0.5.30/apis/create-api/auth/oauth2.ts";

Client Credential Flow (2-legged authorization)

Relevant for: Machine-to-Machine (M2M) applications, daemons, back-end resources, and CLIs. Use case: Allows applications to obtain an access token by passing their client secret and client ID directly to the authorization server without user intervention.

type

(authorization: AuthorizationOAuth2ClientCredentials) => unknown