Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fathym_common/src/deno.deps.ts>DenoKVOAuth.signIn

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function DenoKVOAuth.signIn
Re-export
import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.176/src/deno.deps.ts";
const { signIn } = DenoKVOAuth;

Handles the sign-in request and process for the given OAuth configuration and redirects the client to the authorization URL.

Examples

Example 1

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

const oauthConfig = createGitHubOAuthConfig();

export async function handleSignIn(request: Request) {
 return await signIn(request, oauthConfig);
}

Parameters

request: Request
oauthConfig: OAuth2ClientConfig
optional
options: SignInOptions