import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.141/src/src.deps.ts";
const { createAzureAdOAuthConfig } = DenoKVOAuth;
Returns the OAuth configuration for Azure.
Requires --allow-env[=AZURE_AD_CLIENT_ID,AZURE_AD_CLIENT_SECRET,AZURE_AD_TENANT_ID]
permissions and environment variables:
AZURE_AD_CLIENT_ID
AZURE_AD_CLIENT_SECRET
AZURE_AD_TENANT_ID
Examples
Example 1
Example 1
import { createAzureAdOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";
const oauthConfig = createAzureAdOAuthConfig({
redirectUri: "http://localhost:8000/callback",
scope: ["openid"]
});