贝宝UNSUPPORTED_MEDIA_TYPE [英] Paypal UNSUPPORTED_MEDIA_TYPE

查看:75
本文介绍了贝宝UNSUPPORTED_MEDIA_TYPE的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试从Paypal的授权api获取访问令牌. 当我向api发出发布请求时,我得到UNSUPPORTED_MEDIA_TYPE即415响应.

I am trying to get an access token from paypal's authorization api. When I make post request to the api I get UNSUPPORTED_MEDIA_TYPE i.e. 415 response.

下面是我使用的代码段.

Below is the snippet that I used.

const auth = await fetch(PAYPAL_OAUTH_API, {
    method: 'post',
    headers: {
        'Content-Type': 'application/json',
        'Authorization': `Basic ${ basicAuth }`
    },
    body: JSON.stringify({"grant_type": "client_credentials"})
});

推荐答案

我已通过将Content-Type设置为application/x-www-form-urlencoded来解决问题.

I have fixed my issue by setting Content-Type to application/x-www-form-urlencoded.

我的猜测是,贝宝(Paypal)仅接受application/x-www-form-urlencoded作为授权api.

My guess is paypal accepts only application/x-www-form-urlencoded for authorization api.

这篇关于贝宝UNSUPPORTED_MEDIA_TYPE的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆