Get account bind result (RequestBindDataForAccount)
AndroidiOSWindows
Get bind result.During the LI PASS binding process, the binding result is obtained from this interface.
Function Definition
UFUNCTION(BlueprintCallable, Category = "LevelInfinite")
void UINTLSDKAPI::RequestBindDataForAccount(const FString Uid,
const FString Token,
const FString ExtraJson);
Parameter Instructions
| Parameters | Type | Explanation |
|---|---|---|
| Uid | FString | Account information UID |
| Token | FString | Account token |
| ExtraJson | FString | Extra parameters, JSON format |
Observers
The callback handler interface is AuthAccountResultObserver.The callback data structure is AccountResult.
The method ID for the callback is kMethodIDAuthRequestBindDataForAccount.
Code example
ULevelInfiniteAPI::RequestBindDataForAccount("uid","token","");