我正在将登录与 PayPal - JavaScript 按钮集成。 https://developer.paypal.com/webapps/developer/docs/integration/direct/log-in-with-paypal/js_button/
我需要使用贝宝登录的用户的“payer_id”。但它不包含在响应中。
上述集成指南中“4. 获取用户的 PayPal 个人资料数据”的响应如下:
{
"family_name":"Ito",
"name":"Gen Ito",
"account_type":"BUSINESS",
"given_name":"Gen",
"user_id":"ttps://www.paypal.com/webapps/auth/identity/user/xxxxxxxxxxxxxxxxx",
"verified_account":"true",
"language":"ja_JP",
"zoneinfo":"Asia/Tokyo",
"locale":"ja_JP",
"email":"xxx@xxx",
"account_creation_date":"2011-11-18",
"birthday":"1982-08-02",
"age_range":"26-30"
}
“payer_id”列在下面,所以我认为 payer_id 可用。 https://developer.paypal.com/webapps/developer/docs/api/#get-user-information
我可以通过“使用 Paypal 登录”获取 payer_id 吗?那么我应该使用另一个/其他请求吗?