Creator在Google日历api中未收到有关与会者响应状态的通知电子邮件

问题描述 投票:0回答:1

我正在使用服务帐户来验证Google日历。我的应用程序有一名管理员(组织者),有多个用户(创建者)代表管理员创建事件,邀请电子邮件发给与会者以及有关事件创建的组织者。但问题是,创建者对与会者的响应状态有所了解。

组织者([email protected])收到与会者的(接受或拒绝)响应状态电子邮件,但创建者([email protected])未收到我的电子邮件。

/*adding organizer data */
Event.OrganizerData org = new Event.OrganizerData();
org.Email = gm.Organizer; //[email protected]
eventEntry.Organizer = org;
    /*adding creator data */
Event.CreatorData creator = new Event.CreatorData();
creator.Email = gm.CreatedBy; //[email protected]
eventEntry.Creator = creator;
/*inserting an event to service account calendar*/
  var request = er.Insert(eventEntry, calID);
                    request.SendNotifications = true;
                    var re = request.Execute();

我如何达到此要求。我在互联网上做了很多研究,但没有找到答案。

google-calendar-api
1个回答
0
投票

虽然我知道来晚了。

SendNotifications现在已弃用。使用SendUpdates方法。参见官方文档here

© www.soinside.com 2019 - 2024. All rights reserved.