新版本的Google任务具有截止日期的时间部分以及一种设置重复任务的方法。我在下面添加了一张图片。
可以使用Google Tasks API捕获时间吗?
如果我在任务API到期字段中使用时间成分,则任务API会自动将时间成分变为00:00
let headers = new HttpHeaders()
.set('Content-Type', 'application/json; charset=UTF-8')
.set('Authorization', 'Bearer '+ self._accessToken);
let body = {
'title': 'Hello world',
'notes': 'random task notes',
'due': '2019-03-27T09:45:00Z'
};
return self.http.post('https://www.googleapis.com/tasks/v1/lists/@default/tasks', body, {headers: headers});
答案 0 :(得分:0)