0
我試圖在特定時區檢索日曆視圖。根據Docs,我們需要使用Prefer:outlook.timezone標頭來指定時區。但是在設置prefer標頭之後,api返回了400錯誤狀態。Outlook Rest Api - 在特定時區獲取日曆視圖(REST)
var queryParams = {
'startDateTime' : params.timeMin,
'endDateTime' : params.timeMax,
'$select': 'Start,End'
}
// header
var headers = {
'Prefer' : 'Asia/Kolkata'
}
request.get({url:'https://outlook.office.com/api/v2.0/me/calendarview',
qs:queryParams,
json:true,
'auth': { 'bearer': token},
headers: headers
}, function(error, response, body) {
});