Использование родного 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.
Я пробовал с и без ведомостей: «включить» – go4cas
Когда я делаю эквивалентный скручивание: 'curl -X GET -H 'Авторизация: Носитель xxxxxx" https://api.surveymonkey.net/v3/surveys/ 85596932/response/bulk? Api_key = xxxxxxxxxx & email = test @ example.com' работает 100% – go4cas
Может быть проблемой CORS: https://stackoverflow.com/questions/34662288/setting-authorization-in-native-browser-fetch – Andreas