Create an event in the built-in Google calendar

I am working on a google based web browser where the user logs in through their google account. Through the Google Api Client (Python) library, I fetch a list of my calendars and display the first one using an iFrame.

     <iframe src="https://www.google.com/calendar/embed?src={{calendar}}" style="border: 0; margin-top:20px"  width="100%" height="600" frameborder="0" scrolling="no"></iframe>

      

The problem is that it looks like the calendar is only displayed and there is no way to create new events. I know that I can create a dialog to add events and rely on apanin in the client api library, but it would be more intuitive to do this from the displayed calendar. is there a way to do this?

+3


source to share





All Articles