我们希望我们的应用程序在 FROM 标头中发送带有 google 群组电子邮件的电子邮件。
这在 GMail 界面中是可能的,前提是正确配置了 Google Group。
但是当我们尝试使用 GMail API 时,我们得到了错误:
403 Forbidden
cache-control: private, max-age=0
content-encoding: gzip
content-length: 175
content-type: application/json; charset=UTF-8
date: Thu, 04 Sep 2014 11:05:36 GMT
expires: Thu, 04 Sep 2014 11:05:36 GMT
server: GSE
{
"error": {
"errors": [
{
"domain": "global",
"reason": "forbidden",
"message": "XXX.XXXX@XXXXX.XXX does not have privileges to XXX.XXXX@XXXXX.XXX mailbox."
}
],
"code": 403,
"message": "XXX.XXXX@XXXXX.XXX does not have privileges to XXX.XXXX@XXXXX.XXX mailbox."
}
}
有没有办法通过 GMail API 或 App Engine 的邮件功能来规避这个问题?