This function is part of the Auth Interface.
Remarks
Verify a given ID token for authenticity and validity.
Parameters
EOS_Auth_VerifyIdToken
Parameter Type And Name | Usage Information |
---|---|
EOS_HAuth Handle | |
const EOS_Auth_VerifyIdTokenOptions* Options | Structure containing information about the ID token to verify. |
void* ClientData | Arbitrary data that is passed back to you in the CompletionDelegate |
const EOS_Auth_OnVerifyIdTokenCallback CompletionDelegate | A callback that is fired when the operation completes, either successfully or in error. |
Callback Function Information
Because this function is asynchronous, it employs a callback of type EOS_Auth_OnVerifyIdTokenCallback to report the results of its operation.
Callback Remarks
Function prototype definition for callbacks passed into EOS_Auth_VerifyIdToken.
Callback Parameters
EOS_Auth_OnVerifyIdTokenCallback
Parameter Type And Name | Usage Information |
---|---|
const EOS_Auth_VerifyIdTokenCallbackInfo* Data | A EOS_Auth_VerifyIdTokenCallbackInfo containing the output information and result. |