我正在尝试通过他们的 API 对 sendgrid 列表执行操作。 https://sendgrid.com/docs/API_Reference/Web_API_v3/Marketing_Campaigns/contactdb.html#List-All-Lists-GET
我正在使用它来设置我的代码,但是在我的 Angular 应用程序中通过 $http 执行请求时出现错误 401 UNAUTHORIZED。我尝试在 Python 中发出相同的请求,但这似乎工作正常。
var head = {'Authorization': 'Bearer SG.PE-XXXXXXXXXXXXXXXXXXXXXX'};
var sgUrl = "https://api.sendgrid.com/v3/contactdb/lists";
self.$http({
method : "GET",
url : sgUrl,
headers : head,
}).then(function mySuccess(response) {
alert(1);
}, function myError(response) {
alert(0);
});
谢谢!