Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 2.03 KB

pfauthenticationloginwithxuserasync.md

File metadata and controls

58 lines (36 loc) · 2.03 KB
author title description ms.author ms.topic ms.service ms.date
jasonsandlin
PFAuthenticationLoginWithXUserAsync
Signs the user in using an XUserHandle, returning a session identifier that can subsequently be used for API calls which require an authenticated user
jasonsa
reference
playfab
02/22/2024

PFAuthenticationLoginWithXUserAsync

Signs the user in using an XUserHandle, returning a session identifier that can subsequently be used for API calls which require an authenticated user

Syntax

HRESULT PFAuthenticationLoginWithXUserAsync(  
    PFServiceConfigHandle serviceConfigHandle,  
    const PFAuthenticationLoginWithXUserRequest* request,  
    XAsyncBlock* async  
)  

Parameters

serviceConfigHandle   PFServiceConfigHandle

PFServiceConfigHandle returned from PFServiceConfigCreateHandle call.

request   PFAuthenticationLoginWithXUserRequest*

Populated request object.

async   XAsyncBlock*
Inout

XAsyncBlock for the async operation.

Return value

Type: HRESULT

Result code for this API operation.

Remarks

This API is available on GDK. If this is the first time a user has signed in with the Xbox Live account and CreateAccount is set to true, a new PlayFab account will be created and linked to the Xbox Live account. In this case, no email or username will be associated with the PlayFab account. Otherwise, if no PlayFab account is linked to the Xbox Live account, an error indicating this will be returned, so that the title can guide the user through creation of a PlayFab account. See also ClientLinkXboxAccountAsync, ClientUnlinkXboxAccountAsync. When the asynchronous task is complete, call PFAuthenticationLoginWithXUserGetResult to get the result.

Requirements

Header: PFAuthentication.h

See also

PFAuthentication members