pub type EOS_Auth_VerifyIdTokenCallbackInfo = _tagEOS_Auth_VerifyIdTokenCallbackInfo;Expand description
Output parameters for the EOS_Auth_VerifyIdToken Function.
Aliased Type§
#[repr(C)]pub struct EOS_Auth_VerifyIdTokenCallbackInfo {Show 13 fields
pub ResultCode: i32,
pub ClientData: *mut c_void,
pub ApplicationId: *const i8,
pub ClientId: *const i8,
pub ProductId: *const i8,
pub SandboxId: *const i8,
pub DeploymentId: *const i8,
pub DisplayName: *const i8,
pub bIsExternalAccountInfoPresent: i32,
pub ExternalAccountIdType: i32,
pub ExternalAccountId: *const i8,
pub ExternalAccountDisplayName: *const i8,
pub Platform: *const i8,
}Fields§
§ResultCode: i32The EOS_EResult code for the operation. EOS_Success indicates that the operation succeeded; other codes indicate errors.
ClientData: *mut c_voidContext that was passed into EOS_Auth_VerifyIdToken
ApplicationId: *const i8Epic Account Services Application ID.
ClientId: *const i8Client ID of the authorized client.
ProductId: *const i8Product ID.
SandboxId: *const i8Sandbox ID.
DeploymentId: *const i8Deployment ID.
DisplayName: *const i8Epic Account display name.
This value may be set to an empty string.
bIsExternalAccountInfoPresent: i32Flag set to indicate whether external account information is present. Applications must always first check this value to be set before attempting to read the ExternalAccountIdType, ExternalAccountId, ExternalAccountDisplayName and Platform fields.
This flag is set when the user has logged in to their Epic Account using external account credentials, e.g. through local platform authentication.
ExternalAccountIdType: i32The identity provider that the user logged in with to their Epic Account.
If bIsExternalAccountInfoPresent is set, this field describes the external account type.
ExternalAccountId: *const i8The external account ID of the logged in user.
This value may be set to an empty string.
ExternalAccountDisplayName: *const i8The external account display name.
This value may be set to an empty string.
Platform: *const i8Platform that the user is connected from.
This value may be set to an empty string.