Bind (Bind)
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
| Parameters | Type | Explanation |
|---|---|---|
| channel | string | Specifies the bound channel. For more information, see INTLChannel. |
| permissions | string | Authorization permission list during binding, separate multiple permissions with commas For example: user_info,inapp_friends |
| extraJson | string | Extension 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)
| Parameters | typology | Explanation |
|---|---|---|
| Category | String | Login |
| account | String | Account Supports email and phone |
| accountType | int | Account Type 1: Email Account 2: Phone Account |
| password | String | Password |
| phoneAreaCode | string | Phone 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)
| Parameters | Type | Explanation |
|---|---|---|
| Category | string | loginWithCode |
| account | string | Account Supports email and phone |
| accountType | int | Account Type 1: Email Account 2: Phone Account |
| verifyCode | string | Verification Code |
| phoneAreaCode | string | Phone 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)
| Parameter | Type | Description |
|---|---|---|
| Category | string | register |
| account | string | Account Supports email and phone |
| accountType | int | Account Type 1: Email Account 2: Phone Account |
| verifyCode | String | Verification Code |
| password | String | Password |
| phoneAreaCode | String | Phone area code For example, "86" is China. If registering the account with an email address, this field is empty. |
| birthday | string | User's birthday For example, December 31, 1970, enter "1970-12-31". |
| region | string | Digital codes for countries or regions according to ISO 3166-1 For example, 156 represents China, and 040 represents Austria. |
| isReceiveEmail | int | Receive marketing emails 0: Do not receive marketing emails 1: Receive marketing emails |
| langType | String | Language Type (RFC 4646) For example, "en" represents English.For details, see Language Type Definition. |
| username | String | Username, 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);