我正在尝试以下请求:
OAuth.popup('google').done(function(google) {
google.post('/gmail/v1/users/me/labels', {
data: JSON.stringify({
userId: 'me',
label: {
name: 'SmartMail'
}
}),
dataType: 'json',
contentType: 'application/json; charset=utf8'
}).done(function (result) {
console.log('result: ', result);
}).fail(function (error) {
console.error('error: ', error);
});
}).fail(function(err) {
console.error('google: fail', err);
});
根据此示例:oauth.io subscribe user to youtube channel
但是我收到以下错误:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalidArgument",
"message": "Invalid request"
}
],
"code": 400,
"message": "Invalid request"
}
}
知道它有什么问题吗?
答案 0 :(得分:0)
否认。令人困惑的Gmail文档。