Skip to main content
Module

x/deno_kv_oauth/mod.ts>createGitLabOAuthConfig

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

Returns the OAuth configuration for GitLab.

Requires --allow-env[=GITLAB_CLIENT_ID,GITLAB_CLIENT_SECRET] permissions and environment variables:

  1. GITLAB_CLIENT_ID
  2. GITLAB_CLIENT_SECRET

Examples

Example 1

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

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

Parameters

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