Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OAuthSettings

import type { OAuthSettings } from "https://googleapis.deno.dev/v1/iap:v1.ts";

Configuration for OAuth login&consent flow behavior as well as for OAuth Credentials.

interface OAuthSettings {
loginHint?: string;
programmaticClients?: string[];
}

§Properties

§
loginHint?: string
[src]

Domain hint to send as hd=? parameter in OAuth request flow. Enables redirect to primary IDP by skipping Google's login screen. https://developers.google.com/identity/protocols/OpenIDConnect#hd-param Note: IAP does not verify that the id token's hd claim matches this value since access behavior is managed by IAM policies.

§
programmaticClients?: string[]
[src]

List of client ids allowed to use IAP programmatically.