我想通过Google API发送电子邮件,而不需要不必要的OAUTH2参数。我只有该用户的access_token和refresh_token。
如何使用Request npm插件通过NodeJS中的基本POST请求通过Gmail API发送电子邮件?
答案 0 :(得分:6)
亚伯拉罕是正确的,但我只是想我给你一个例子。
var request = require('request');
server.listen(3000, function () {
console.log('%s listening at %s', server.name, server.url);
// Base64-encode the mail and make it URL-safe
// (replace all "+" with "-" and all "/" with "_")
var encodedMail = new Buffer(
"Content-Type: text/plain; charset=\"UTF-8\"\n" +
"MIME-Version: 1.0\n" +
"Content-Transfer-Encoding: 7bit\n" +
"to: reciever@gmail.com\n" +
"from: sender@gmail.com\n" +
"subject: Subject Text\n\n" +
"The actual message text goes here"
).toString("base64").replace(/\+/g, '-').replace(/\//g, '_');
request({
method: "POST",
uri: "https://www.googleapis.com/gmail/v1/users/me/messages/send",
headers: {
"Authorization": "Bearer 'access_token'",
"Content-Type": "application/json"
},
body: JSON.stringify({
"raw": encodedMail
})
},
function(err, response, body) {
if(err){
console.log(err); // Failure
} else {
console.log(body); // Success!
}
});
});
请勿忘记更改接收方和发件人电子邮件地址,以便该示例正常运行。
答案 1 :(得分:4)
有two methods用于将OAuth2 access_tokens附加到Google API请求。
?access_token=oauth2-token
Authorization: Bearer oauth2-token
第二个优先选择POST请求,因此发送电子邮件的原始HTTP请求看起来像这样。
POST /gmail/v1/users/me/messages/send HTTP/1.1
Host: www.googleapis.com
Authorization: Bearer oauth2Token
{"raw":"encodedMessage"}