0
我已將AWS API網關與AWS Cognito用戶池集成。以下curl命令起作用。AWS API網關授權失敗
curl -X PUT -H "Authorization:<id token>" -d <json data> <https url>
但是,以下Angularjs $ http.put授權失敗。 AWS CloudWatch的日誌顯示「用戶是未經授權的」
$http.defaults.headers.common['Authorization'] = token
$http.put('https://<url>', <json data>)
.then(function (data, status, headers, config) {
console.log('success')
}, function (data, status, headers, config) {
console.log('failure')
});
應該如何授權令牌可以用$ http.put設置?