Synchronising Google Calendar to my application in

2019-07-21 22:44发布

问题:

I have made a GUI application in Android, to which I would like to sync with Google Calendar. How could this be done?

回答1:

Google has well-documented APIs for its services. You can find the Calendar API here:

http://code.google.com/apis/calendar/data/2.0/developers_guide.html

You might want to also take a look at OAuth as the authentication mechanism, since most users don't like giving out their passwords to apps. Here's a summary I wrote about OAuth on Android:

http://nilvec.com/implementing-client-side-oauth-on-android.html

Happy hacking!