更改Google群组自动消息设置的API



我正试图通过他们的API之一更改我公司谷歌帐户中谷歌组的自动响应消息(这些消息需要自动打开和关闭)。

我已经使用组设置api来更改组上的其他设置,但是消息设置(以及许多其他设置)似乎不是该api的一部分。

是否有其他API用于更改组设置?

目前没有API设置来修改组的自动应答器。必须通过web UI更改

我今天发现了这个。——我没试过——我试过了,但这对我来说不适用。

https://developers.google.com/gmail/api/guides/vacation_settings

我试着写

aemail = "group email"
adescription = "something else"
scopes = ['https://www.googleapis.com/auth/gmail.settings.basic']
credentials = ServiceAccountCredentials.from_json_keyfile_name(
    'p--cut--2.json', scopes)
delegated_credentials = credentials.create_delegated(aemail)
http_auth = delegated_credentials.authorize(Http())
service = build('gmail','v1', http=http_auth)
vacation_settings = {
    'enableAutoReply': True,
    'responseBodyHtml': adescription,
    'restrictToDomain': restrictToDomain,
}
result = service.users().settings()
        .updateVacation(userId='me', body=vacation_settings).execute()
pprint.pprint(result)

相关内容

  • 没有找到相关文章

最新更新