Try to renew the transfer account.
If you want to renew the account automatically or manually, you should pass the proper TransferAccountRenewConfiguration object to the first parameter.
public void RenewTransferAccountSample(string accountId, string accountPassword)
{
GamebaseRequest.Auth.TransferAccountRenewConfiguration configuration = GamebaseRequest.Auth.TransferAccountRenewConfiguration.MakeManualRenewConfiguration(accountId, accountPassword);
{
{
Debug.Log(string.Format("RenewTransferAccount succeeded. ID:{0}, Password:{1}", transferAccountInfo.account.id, transferAccountInfo.account.password));
}
else
{
Debug.Log(string.Format("RenewTransferAccount failed. error is {0}", error));
}
});
}
static void RenewTransferAccount(GamebaseRequest.Auth.TransferAccountRenewConfiguration configuration, GamebaseCallback.GamebaseDelegate< GamebaseResponse.Auth.TransferAccountInfo > callback)
Try to renew the transfer account.
Definition: Gamebase.cs:1561
static bool IsSuccess(GamebaseError error)
Return true if the GamebaseException object is null or the error code is zero.
Definition: Gamebase.cs:57
The Gamebase class is core of Gamebase service.
Definition: Gamebase.cs:11