通过Postman获取 access_token
- 首先下载 postman
- 设置提交方式 post
- url地址设为: https://api.sandbox.paypal.com/v1/oauth2/token
- 在 Authorization 选项,设置为 type为Basic Auth ,
- 输入Username的值为 client ID
- 输入 Password 的值为 secret
- 在Body 选项设置为
x-www-form-urlencoded
.- 设置key 为 grant_type
- 设置 value 为
client_credentials
- 点击 Send