javascript - How to create Google calendar through auth api and share it for multiple user for edit and view in php -
i tried more did not find exact doc plz share idea implement google calendar dynamically , can share user edit , view.
i found php quickstart guide in google calendar api documentation. provides steps on how integrate simple php command-line application makes requests google calendar api. might help.
you can view calendar calling calendarlist.get method. returns entry on user's calendar list. see example:
$calendarlistentry = $service->calendarlist->get('calendarid'); echo $calendarlistentry->getsummary();
then can edit/update entry on user's calendar list calling calendarlist:update method. example:
$updatedcalendarlistentry = service->calendarlist->update($calendarlistentry->getid(), $calendarlistentry); echo $updatedcalendarlistentry->getetag();
check github examples below:
Comments
Post a Comment