我已将Oauth用于我的服务帐户。现在,使用此服务帐户,我试图通过php api访问其他人的日历。
我正在使用以下代码添加日历。
$ service =新的Google_Service_Calendar($ client); $ calendarListEntry =新的Google_Service_Calendar_CalendarListEntry(); $ calendarListEntry-> setId(“ gmailID”); $ createdCalendarListEntry = $ service-> calendarList-> insert($ calendarListEntry); echo $ createdCalendarListEntry-> getSummary(); ?>
但这是行不通的。
我想像Google日历那样通过php API添加朋友日历 例如,从“我的Google日历”中打开“其他日历”菜单,选择“浏览有趣的日历”,然后可以将这些日历添加到用户界面
还有其他方法可以做这种事情吗? 请帮助...