Skip to main content

Bind (Bind)

AndroidiOSWindows
If you are using Unreal Engine, see Bind for the Unreal Engine SDK.

Bind a third-party channel to the guest account.It essentially means multiple third-party accounts share the same Player Network SDK OpenID.
The common usage scenario is: Guest logs into the game and then binds Facebook or Google account.

Function Definition

public static void Bind(string channel, string permissions = "", string extraJson = "{}");

Parameter Instructions

ParametersTypeExplanation
channelstringSpecifies the bound channel.
For more information, see INTLChannel.
permissionsstringAuthorization permission list during binding, separate multiple permissions with commas
For example: user_info,inapp_friends
extraJsonstringExtension fields
For more information, refer to relative channel description.

Return Value

No return value.

Callback processing

The callback handler interface is AuthResultObserver.The callback data structure is AuthResult.

The callback methodID is INTL_AUTH_BIND.

Bind Third-Party Channel Account

INTLAPI.Bind(INTLChannel.Facebook);

Bind Custom Account (Password Login Binding)

ParameterstypologyExplanation
CategoryStringLogin
accountStringAccount
Supports email and phone
accountTypeintAccount Type
1: Email Account
2: Phone Account
passwordStringPassword
phoneAreaCodestringPhone area code
For example, "86" is China.
If registering the account with an email address, this field is empty.
string extra_json = "{\"type\":\"login\",\"account\":\"\",\"accountType\":1,\"phoneAreaCode\":\"\",\"password\":\"\"}";
INTLAPI.Bind(INTLChannel.CustomAccount, "", extra_json);

Bind Custom Account (Verification Code Login Binding)

ParametersTypeExplanation
CategorystringloginWithCode
accountstringAccount
Supports email and phone
accountTypeintAccount Type
1: Email Account
2: Phone Account
verifyCodestringVerification Code
phoneAreaCodestringPhone area code
For example, "86" is China.
If registering the account with an email address, this field is empty.
string extra_json = "{\"type\":\"loginWithCode\",\"account\":\"\",\"accountType\":1,\"verifyCode\":\"\",\"phoneAreaCode\":\"\"}";
INTLAPI.Bind(INTLChannel.CustomAccount, "", extra_json);

Bind Custom Account (Registration)

ParameterTypeDescription
Categorystringregister
accountstringAccount
Supports email and phone
accountTypeintAccount Type
1: Email Account
2: Phone Account
verifyCodeStringVerification Code
passwordStringPassword
phoneAreaCodeStringPhone area code
For example, "86" is China.
If registering the account with an email address, this field is empty.
birthdaystringUser's birthday
For example, December 31, 1970, enter "1970-12-31".
regionstringDigital codes for countries or regions according to ISO 3166-1
For example, 156 represents China, and 040 represents Austria.
isReceiveEmailintReceive marketing emails
0: Do not receive marketing emails
1: Receive marketing emails
langTypeStringLanguage Type (RFC 4646)
For example, "en" represents English.For details, see Language Type Definition.
usernameStringUsername, must start with a letter, containing only lowercase letters (from a to z), underscores (_) and numbers (from 0 to 9).Length can be 6 to 16 letters.
string extra_json = "{\"type\":\"register\",\"account\":\"\",\"accountType\":1,\"verifyCode\":\"\",\"password\":\"\",\"phoneAreaCode\":\"\",\"birthday\":\"1970-12-31\",\"region\":\"156\",\"isReceiveEmail\":\"0\",\"langType\":\"en\",\"username\":\"YOUR_USER_NAME\"}";
INTLAPI.Bind(INTLChannel.CustomAccount, "", extra_json);