我创建了一个名为 XXXX 的盒子应用程序。我有 client_id: XXXX 和 client_secret: XXXX 。对于发布方法,我使用以下网址:
curl https://app.box.com/api/oauth2/token \ -d 'grant_type=authorization_code&code={your_code}&client_id={your_client_id}&client_secret={your_client_secret}' \ -X POST
我的疑问是如何在浏览器中使用 curl。我通过将上面的 url 给出为
https://app.box.com/api/oauth2/token \ d'grant_type=authorization_code&code=XXXX&client_id=XXXX&client_secret=XXXX' \ -X POST
仅使用 client-id 和 client-secret 以 Box api 为例。如何在 cURL 中使用 post 方法。