我正在检索袖珍 api 的访问令牌。我能够使用内容类型为 的 Http POST 请求成功地做到这一点application/x-www-form-urlencoded
。
{
host: 'getpocket.com',
path: '/v3/oauth/authorize',
port: 443,
method: 'POST',
headers:
{ 'Content-Type': 'application/x-www-form-urlencoded',
'Content-Length': 79 }
}
但是 Pocket 也支持内容类型为application/json
.
{
host: 'getpocket.com',
path: '/v3/oauth/authorize',
port: 443,
method: 'POST',
headers: { 'Content-Type': 'application/json', 'Content-Length': 79 }
}
但是使用这种类型的请求会返回我
'400 错误请求'
我在nodejs上这样做。我是否必须传递任何额外的细节,比如“X-Accept”(不知道怎么做)。