Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface UserIdentity

    interface UserIdentity {
        connection: string;
        user_id: UserId;
        provider: string;
        profileData?: UserProfileData;
        isSocial?: boolean;
        access_token?: string;
        access_token_secret?: string;
        refresh_token?: string;
    }
    Index

    Properties

    connection: string

    Connection name of this identity.

    user_id: UserId
    provider: string

    Type of identity provider.

    profileData?: UserProfileData
    isSocial?: boolean

    Whether the identity provider is a social provider (true) or not (false).

    access_token?: string

    IDP access token returned if scope read:user_idp_tokens is defined.

    access_token_secret?: string

    IDP access token secret returned only if scope read:user_idp_tokens is defined.

    refresh_token?: string

    IDP refresh token returned only if scope read:user_idp_tokens is defined.