dongyinting3179 2012-07-07 11:19
浏览 104
已采纳

Google calendar api - 将日历设置为公开?

I can successfully add a calendar, but unfortunately I can't embed that calendar on remote pages like I want to, because it's not set to public!

I can't find any references to setting the calendar's sharing settings/permissions to public.

EDIT: Found some more info: https://developers.google.com/google-apps/calendar/v3/reference/acl/insert

Seems like this is what I need, I'll report back with exactly how to do this..

EDIT #2: I'm getting good at this!

$rule = new AclRule();
$scope = new AclRuleScope();

$scope->setType("default");
$scope->setValue("");
$rule->setScope($scope);
$rule->setRole("reader");

$createdRule = $service->acl->insert($createdCalendar->id, $rule);
  • 写回答

1条回答 默认 最新

  • dongmei8511 2012-07-25 12:57
    关注

    Updated post with answer! Just had to set the "ACL" for default viewer (public) to reader!

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部