【发布时间】:2019-02-14 05:18:14
【问题描述】:
我正在尝试从 paypal 的授权 api 获取访问令牌。
当我向 api 发出 post 请求时,我得到 UNSUPPORTED_MEDIA_TYPE 即 415 响应。
下面是我用的sn-p。
const auth = await fetch(PAYPAL_OAUTH_API, {
method: 'post',
headers: {
'Content-Type': 'application/json',
'Authorization': `Basic ${ basicAuth }`
},
body: JSON.stringify({"grant_type": "client_credentials"})
});
【问题讨论】: