PFAuthenticationLoginWithCustomIDRequest

PFAuthenticationLoginWithCustomIDRequest データ モデル。 顧客が生成する ID が、既に別の顧客が使用している ID と同じになる可能性を極力低くすることが、開発者には強く求められます。 ユーザーがカスタム ID で初めてサインインし、CreateAccount が true に設定されている場合、新しい PlayFab アカウントが作成され、カスタム ID にリンクされます。 この場合、メールアドレスとユーザー名は PlayFab アカウントに関連付けられません。 それ以外の場合で、PlayFab アカウントが カスタム ID にリンクされていない場合は、これを示すエラーが返され、タイトルがユーザーに対して PlayFab アカウントの作成をガイドできるようになります。

構文

typedef struct PFAuthenticationLoginWithCustomIDRequest {  
    bool createAccount;  
    const char* customId;  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    PFGetPlayerCombinedInfoRequestParams const* infoRequestParameters;  
    const char* playerSecret;  
} PFAuthenticationLoginWithCustomIDRequest;  

メンバー

createAccount bool

現在この ID にリンクされている PlayFab アカウントがない場合は、PlayFab アカウントを自動的に作成します。

customId const char*
が null で終わる

タイトルによって生成された、ユーザーのカスタム一意識別子。

customTags PFStringDictionaryEntry const*
nullptr でもかまいません

(省略可能) 要求に関連付けられているオプションのカスタム タグ (ビルド番号、外部トレース識別子など)。

customTagsCount uint32_t

customTags の数

infoRequestParameters PFGetPlayerCombinedInfoRequestParams const*
nullptr でもかまいません

(省略可能) ユーザーに返される情報の一部を示すフラグ。

playerSecret const char*
が null で終わる

(省略可能) API 要求の署名を確認するために使用されるプレイヤー シークレット (エンタープライズのみ)。

要件

ヘッダー: PFAuthenticationTypes.h

関連項目

PFAuthenticationTypes メンバー