import { createGitLabOAuthConfig } from "https://deno.land/x/fathym_everything_as_code@v0.0.390-integration/src/src.deps.ts";
Returns the OAuth configuration for GitLab.
Requires --allow-env[=GITLAB_CLIENT_ID,GITLAB_CLIENT_SECRET]
permissions
and environment variables:
GITLAB_CLIENT_ID
GITLAB_CLIENT_SECRET
Examples
Example 1
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",
});