调用 paypal rest api 时显示范围无效
When calling paypal rest api it says invalid scope
当前,当我在下面调用 api 时,它说无效范围
https://www.sandbox.paypal.com/connect/?scope=openid%20email&response_type=code&redirect_uri={uri}&client_id={clientId}
谁能帮我解决这个问题,因为我需要调用以下 API。那么,我怎样才能获得相关范围
- 获取商户详细信息:/retail/merchant/v1/status
- 创建订单:v2/checkout/orders
- 捕获订单:v2/checkout/orders/+orderId+/capture
- 获取用户详细信息:v1/identity/oauth2/userinfo?schema=paypalv1.1
REST API 的普通用法不涉及任何内容 -- here is the documentation for getting an access token.
具体来说,您是否将登录与 PayPal 集成?屏幕截图中的 URL 专门用于登录/连接 PayPal。要请求具有此类集成的 'email' 范围,您必须在 Sandbox App Settings 中启用它。更改可能需要 9 小时才能生效。
同样,使用 REST API 与那些范围属性无关。
https://www.sandbox.paypal.com/connect/?scope=openid%20email&response_type=code&redirect_uri={uri}&client_id={clientId}
谁能帮我解决这个问题,因为我需要调用以下 API。那么,我怎样才能获得相关范围
- 获取商户详细信息:/retail/merchant/v1/status
- 创建订单:v2/checkout/orders
- 捕获订单:v2/checkout/orders/+orderId+/capture
- 获取用户详细信息:v1/identity/oauth2/userinfo?schema=paypalv1.1
REST API 的普通用法不涉及任何内容 -- here is the documentation for getting an access token.
具体来说,您是否将登录与 PayPal 集成?屏幕截图中的 URL 专门用于登录/连接 PayPal。要请求具有此类集成的 'email' 范围,您必须在 Sandbox App Settings 中启用它。更改可能需要 9 小时才能生效。
同样,使用 REST API 与那些范围属性无关。