javascript 在获取API调用时未设置标头

ds97pgxw  于 2023-11-15  发布在  Java
关注(0)|答案(1)|浏览(93)

使用本机获取API,我有以下代码:

fetch('https://api.surveymonkey.net/v3/surveys/' + surveyId + '/responses/bulk?api_key=' + keySurveyMonkey + '&email=' + customerEmail, {
    method: 'GET',
    credentials: "include",
    headers: {
      "authorization": "Bearer xxxxxxxxxxxxxxxxxxxx"
    }
})
.then((response) => {
    return response.json();
})

字符串
由于某些原因,头没有设置,所以API抛出401。

t3psigkw

t3psigkw1#

事实证明,SurveyMonkey最近进行了一些基础设施更改,导致CORS标头无法发送。我相信这是暂时的情况。

相关问题