Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
function createFacebookOAuthConfig
import { createFacebookOAuthConfig } from "https://deno.land/x/fathym_everything_as_code@v0.0.351/src/src.deps.ts";

Returns the OAuth configuration for Facebook.

Requires --allow-env[=FACEBOOK_CLIENT_ID,FACEBOOK_CLIENT_SECRET] permissions and environment variables:

  1. FACEBOOK_CLIENT_ID
  2. FACEBOOK_CLIENT_SECRET

Examples

Example 1

import { createFacebookOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";

const oauthConfig = createFacebookOAuthConfig({
  redirectUri: "http://localhost:8000/callback",
  scope: "email",
});

Parameters

config: { redirectUri: string; scope: string | string[]; }