用户绑定Alipay账号。
Request
HTTP request
POST https://www.featapi.com/api/user/profile/alipay-binding/
Parameters
无需添加参数。
Authorization
本接口需要当前用户登录认证并授权以下scopes访问权限:
Scopes |
---|
user_profile |
For more information, see the authentication and authorization page.
Request body
请求参数
Property name | Type | Is Required | Description | Notes |
---|---|---|---|---|
redirect_to | string | 选填 | 在账号绑定操作成功后,前端想要跳转的url地址。范例值:https://www.feat.com。 | 默认值:https://www.feat.com |
Response
如果请求成功,该API返回以下响应体信息。
200 Post successfully
{
'auth_url':
'https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=XXXscope=auth_base&redirect_uri=https%3A//www.feat.com/api/pay/alipay_auth_return/'
}
Response body
Property name | Type | Description | Notes |
---|---|---|---|
auth_url | string | 这是支付宝授权认证地址,前端直接访问地址,等待用户的支付宝账号认证操作,成功会自动跳转上文`redirect_to`参数指向的地址。 |