簡體   English   中英

共享日歷時邀請 email 不發送到非 google 帳戶

[英]Invite email do not sent to non google account when sharing a calendar

C# package 使用:Google.Apis.Calendar.v3

我正在向非谷歌帳戶共享日歷。 沒有邀請通知發送到該帳戶事件響應 = OK

            var rule = new AclRule
            {
                Role = "owner",
                Scope = new AclRule.ScopeData
                {
                    Value = acb@yahoo.com,
                    Type = "user"
                }
            };

            var service = await GetCalendarService();
            var request = service.Acl.Insert(rule, calendarId);

            request.SendNotifications = true;

            AclRule addedRule = await request.ExecuteAsync();

那么有人可以幫助我嗎?

謝謝,

我發現谷歌日歷 API 沒有任何選項可以向非谷歌 email 發送通知。

此外,日歷必須首先公開。 這個不能被 API 修改。 而且我也不想公開。

這是來自谷歌的文件

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM