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

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -