I need to insert events to a Google Calendar account from a Python server, but the flow of my application is:
- The user downloads and installs the android app
- The user selects a Google account
- A token is generated in the android app
- The token is sent over https to the server
- The server, after some processing, insert a new event to Google Calendar through the token received
The questions are:
- Will this flow work?
- What libraries do I need to use on server and android app? I've read the official documentation, but I'm confused about what should I use.
- Do I need to know something else?
At this moment, I can login in the android app, but I don't know how to get the desired permissions.