Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
If you find the solution on your own, add it as an answer (do not add the solution in the original post, add it below as a regular answer). – Emil Vikström Jul 7 '12 at 19:57

1 Answer

up vote 0 down vote accepted

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.