This function is part of the Auth Interface.
Remarks
Contact the backend service to verify validity of an existing user auth token. This function is intended for server-side use only.
See Also
Parameters
EOS_Auth_VerifyUserAuth
Parameter Type And Name | Usage Information |
---|---|
EOS_HAuth Handle | |
const EOS_Auth_VerifyUserAuthOptions* Options | structure containing information about the auth token being verified |
void* ClientData | arbitrary data that is passed back to you in the CompletionDelegate |
const EOS_Auth_OnVerifyUserAuthCallback CompletionDelegate | a callback that is fired when the logout operation completes, either successfully or in error |
Callback Function Information
Because this function is asynchronous, it employs a callback of type EOS_Auth_OnVerifyUserAuthCallback to report the results of its operation.
Callback Remarks
Function prototype definition for callbacks passed to EOS_Auth_VerifyUserAuth
Callback Parameters
EOS_Auth_OnVerifyUserAuthCallback
Parameter Type And Name | Usage Information |
---|---|
const EOS_Auth_VerifyUserAuthCallbackInfo* Data | A EOS_Auth_VerifyUserAuthCallbackInfo containing the output information and result |