import { createAuth0OAuthConfig } from "https://deno.land/x/fathym_everything_as_code@v0.0.390-integration/src/src.deps.ts";
Returns the OAuth configuration for Auth0.
Requires --allow-env[=AUTH0_CLIENT_ID,AUTH0_CLIENT_SECRET,AUTH0_DOMAIN]
permissions and environment variables:
AUTH0_CLIENT_ID
AUTH0_CLIENT_SECRET
AUTH0_DOMAIN
Examples
Example 1
Example 1
import { createAuth0OAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";
const oauthConfig = createAuth0OAuthConfig({
redirectUri: "http://localhost:8000/callback",
scope: "openid"
});