Edit

PFEntityToken

PlayFab EntityToken and its expiration time. Used to authenticate PlayFab service calls.

Syntax

typedef struct PFEntityToken {  
    const char* token;  
    time_t const* expiration;  
} PFEntityToken;  

Members

token   const char*

The token used to set X-EntityToken for all entity based API calls.

expiration   time_t const*

(Optional) The time the token will expire, if it is an expiring token, in UTC.

Requirements

Header: PFEntity.h

See also

PFEntity members