Skip to main content
Module

x/deno_kv_oauth/mod.ts>createGoogleOAuthConfig

High-level OAuth 2.0 powered by Deno KV.
Go to Latest
function createGoogleOAuthConfig
import { createGoogleOAuthConfig } from "https://deno.land/x/deno_kv_oauth@v0.9.0/mod.ts";

Returns the OAuth configuration for Google.

Requires --allow-env[=GOOGLE_CLIENT_ID,GOOGLE_CLIENT_SECRET] permissions and environment variables:

  1. GOOGLE_CLIENT_ID
  2. GOOGLE_CLIENT_SECRET

Examples

Example 1

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

const oauthConfig = createGoogleOAuthConfig({
  redirectUri: "http://localhost:8000/callback",
  scope: "https://www.googleapis.com/auth/userinfo.profile"
});

Parameters

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