Google Drive API でエラーが発生しましたMethod not allowed
これは、エラーをスローする私が使用しているコードです:
xhr.open("POST", 'http://accounts.google.com/o/oauth2/token');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
var data = {
code : code,
client_id : _opt.clientId,
client_secret : _opt.clientSecret,
redirect_uri : 'urn:ietf:wg:oauth:2.0:oob',
grant_type : 'authorization_code'
};
// Send the request.
xhr.send(data);
このエラーを解決するにはどうすればよいですか?