Skip to main content

relyingparty_auth_uri

Creates, updates, deletes, gets or lists a relyingparty_auth_uri resource.

Overview

Namerelyingparty_auth_uri
TypeResource
Idgoogle.identitytoolkit.relyingparty_auth_uri

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_auth_uriinsertCreates the URI used by the IdP to authenticate the user.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

INSERT examples

Creates the URI used by the IdP to authenticate the user.

INSERT INTO google.identitytoolkit.relyingparty_auth_uri (
data__appId,
data__authFlowType,
data__clientId,
data__context,
data__continueUri,
data__customParameter,
data__hostedDomain,
data__identifier,
data__oauthConsumerKey,
data__oauthScope,
data__openidRealm,
data__otaApp,
data__providerId,
data__sessionId,
data__tenantId,
data__tenantProjectNumber
)
SELECT
'{{ appId }}',
'{{ authFlowType }}',
'{{ clientId }}',
'{{ context }}',
'{{ continueUri }}',
'{{ customParameter }}',
'{{ hostedDomain }}',
'{{ identifier }}',
'{{ oauthConsumerKey }}',
'{{ oauthScope }}',
'{{ openidRealm }}',
'{{ otaApp }}',
'{{ providerId }}',
'{{ sessionId }}',
'{{ tenantId }}',
'{{ tenantProjectNumber }}'
RETURNING
allProviders,
authUri,
captchaRequired,
forExistingProvider,
kind,
providerId,
registered,
sessionId,
signinMethods
;