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

CreateAuthUriResponse

import type { CreateAuthUriResponse } from "https://googleapis.deno.dev/v1/identitytoolkit:v3.ts";

Response of creating the IDP authentication URL.

interface CreateAuthUriResponse {
allProviders?: string[];
authUri?: string;
captchaRequired?: boolean;
forExistingProvider?: boolean;
kind?: string;
providerId?: string;
registered?: boolean;
sessionId?: string;
signinMethods?: string[];
}

§Properties

§
allProviders?: string[]
[src]

all providers the user has once used to do federated login

§
authUri?: string
[src]

The URI used by the IDP to authenticate the user.

§
captchaRequired?: boolean
[src]

True if captcha is required.

§
forExistingProvider?: boolean
[src]

True if the authUri is for user's existing provider.

§
kind?: string
[src]

The fixed string identitytoolkit#CreateAuthUriResponse".

§
providerId?: string
[src]

The provider ID of the auth URI.

§
registered?: boolean
[src]

Whether the user is registered if the identifier is an email.

§
sessionId?: string
[src]

Session ID which should be passed in the following verifyAssertion request.

§
signinMethods?: string[]
[src]

All sign-in methods this user has used.