my.getAuthCode
Call the API to obtain the authorization code. The authorization code is used to obtain the access token to get basic user information.
System requirement
Follow the system requirements below based on your super app:
- For Alipay China (Alipay CN): Alipay CN 10.2.38 or above. If the version is earlier, we recommend you try to implement compatibility.
- For other Alipay+ partner apps, contact the technical support of your super app.
Sample code
my.getAuthCode({
scopes: ['auth_user'],
success: (res) => {
my.alert({
content: res.authCode,
});
},
});
Parameters
Property | Data Type | Required | Description |
scopes | Array[String] | No | The scopes of authorization. If this property is not specified or specified to |
success | Function | No | Callback function upon call success |
fail | Function | No | Callback function upon call failure |
complete | Function | No | Callback function upon call completion (to be executed upon either call success or failure) |
Scopes description
Scopes | Description | More information |
auth_base | (This is the default value.) Authorized to silently obtain the user ID only. Note: | These scopes are supported both in Alipay China and other Alipay+ partner apps. |
auth_user | Authorized to obtain user information. | |
SEND_MESSAGE | Authorized to send notifications to users via SMS/PUSH/INBOX. | This is only supported in other Alipay+ partner apps |
Callback function
Property | Data Type | Required | Description |
error | Number | No | The error code |
errorMessage | String | No | The error message |
authCode | String | Yes | The authorization code |
authErrorScopes | Object | Yes | The scope that fails to grant authorization. |
authSuccessScopes | Array[String] | Yes | The scope that succeeds to grant authorization. |
Successful response example
{
"authCode":"28100613DFLQDKXJQRSMKIXZCI"
"authErrorScopes":{}
"authSuccessScopes":['auth_user']
}
Failure response example
Two types of failure responses are listed below:
- Authorization failed, abnormal, or canceled (with error and errorMessage returned but no auth-related parameters):
// Canceled by user
{
"error": 11,
"errorMessage": "Unauthorized to get user info"
}
// The obtained authCode value is empty
{
"error": 10,
"errorMessage": "Empty authCode"
}
- Authorization failed for certain authorization scopes (with auth-related parameters returned). The error message is specified in the value of the authErrorScopes object:
// Authorization failed when the value of scope is auth_user
{
"authCode": "",
"authSuccessScopes": [],
"authErrorScopes": {
"auth_user": "10001"
}
}