gpt4 book ai didi

node.js - Surveymonkey - 提供的授权 token 无效

转载 作者:太空宇宙 更新时间:2023-11-03 23:58:12 26 4
gpt4 key购买 nike

我正在尝试在 NodeJS 中获取serveymonkey 响应。这是我得到的回复:

{ 
error:
{ docs: 'https://developer.surveymonkey.com/api/v3/#error-codes',
message: 'The authorization token provided was invalid.',
id: '1011',
name: 'Authorization Error',
http_status_code: 401
}
}

这是我的代码:

 const fetch = require('node-fetch');
const accessToken = 'xxxxxxx';
let options = {
method : 'GET',
headers: {
Authorization: accessToken,
},
contentType: 'application/json'
};

fetch('https://api.surveymonkey.com/v3/surveys/6991347309/responses/6991347309',options)
.then(res => res.json())
.then(json => console.log(json));

我检查了很多次的访问 token 是直接从应用程序复制的。

我做错了什么?

最佳答案

您请求的 Authorization header 中缺少前缀 bearer:

Authorization: bearer YOUR_ACCESS_TOKEN

有关详细信息,请参阅Authentication API 文档部分。

关于node.js - Surveymonkey - 提供的授权 token 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56018419/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com