我很难向POST
Outlook API 发送请求。
我正在我的本地机器上工作并定义了redirectUrl
我的localhost:port
我的GET
请求有效:
var apiUrl = "https://outlook.office.com/api/v2.0/me/calendarview?startdatetime=" + startDateTime + "&enddatetime=" + endDateTime + "&$top=" + 10;
$.ajax({
type: 'GET',
url: apiUrl,
headers: {
"Authorization": "Bearer " + token
}
}).done(function (data) {
processResults(data);
}).fail(function (response) {
handleFailure();
});
但是当我尝试发送时POST
,我收到了这条消息:
访问被拒绝。检查凭据并重试。
我的代码是:
var apiUrl = "https://outlook.office.com/api/v2.0/me/events";
var postData = {
"Subject": "Plan summer company picnic",
"Body": {
"ContentType": "HTML",
"Content": "Let's kick-start this event planning!"
},
"Start": {
"DateTime": "2019-01-15T11:00:00",
"TimeZone": "Pacific Standard Time"
},
"End": {
"DateTime": "2019-01-15T12:00:00",
"TimeZone": "Pacific Standard Time"
},
"Attendees": [
{
"EmailAddress": {
"Address": "myMail@gmail.com",
"Name": "Name Here"
},
"Type": "Required"
}
]
};
$.ajax({
type: 'POST',
url: apiUrl,
headers: {
"Authorization": "Bearer " + token
},
contentType: 'application/json',
data: JSON.stringify(postData)
}).done(function (data) {
processResults(data);
}).fail(function (response) {
handleFailure();
});
在这两种情况下,我都使用相同的令牌,所以它可能不是登录问题。我也允许Calendars.ReadWrite
在应用程序中。
更新
我清除缓存,登录,GET
拨打电话,然后POST
拨打电话,然后GET
再次拨打电话。两个GET
调用都有效,所以问题不是令牌或缓存问题。