我試圖更新用下面的代碼任務:
谷歌的任務更新錯誤
function updtsk(task,id)
{
var url = 'https://www.googleapis.com/tasks/v1/lists/@default/tasks/'+id;
var req = {
'method': 'PUT',
'headers': {
'Content-type': 'application/json'
},
'body': JSON.stringify(task)
};
var addDone = function(resp, xhr) {
if (xhr.status != 200) {
notifyFailure('Couldn\'t update task.', xhr.status);
return;
}
//notifySuccess(task['title']);
}
oauth.sendSignedRequest(url, addDone, req);
}
我得到不過以下錯誤:
"{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalid",
"message": "Invalid Value"
}
],
"code": 400,
"message": "Invalid Value"
}
}
"
更新的身體是這樣的:
{
'title': $(this).val()
};
我正在使用chrome_ex_oauth api並可以使用一些幫助。
你能發佈一個正在發送的更新正文的例子,導致這個錯誤被返回嗎? – bronsoja
你走了。你能幫我嗎? – jbills