Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyVerifyAssertionRequest[][src]

pub struct IdentitytoolkitRelyingpartyVerifyAssertionRequest {
    pub post_body: Option<String>,
    pub delegated_project_number: Option<String>,
    pub instance_id: Option<String>,
    pub id_token: Option<String>,
    pub pending_id_token: Option<String>,
    pub session_id: Option<String>,
    pub request_uri: Option<String>,
    pub return_secure_token: Option<bool>,
    pub auto_create: Option<bool>,
    pub return_refresh_token: Option<bool>,
    pub return_idp_credential: Option<bool>,
}

Request to verify the IDP assertion.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The post body if the request is a HTTP POST.

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

Instance id token of the app.

The GITKit token of the authenticated user.

The GITKit token for the non-trusted IDP pending to be confirmed by the user.

Session ID, which should match the one in previous createAuthUri request.

The URI to which the IDP redirects the user back. It may contain federated login result params added by the IDP.

Whether return sts id token and refresh token instead of gitkit token.

When it's true, automatically creates a new account if the user doesn't exist. When it's false, allows existing user to sign in normally and throws exception if the user doesn't exist.

Whether to return refresh tokens.

Whether return 200 and IDP credential rather than throw exception when federated id is already linked.

Trait Implementations

Auto Trait Implementations