Reputation: 119
I have a simple MVC5 Application with same users. Now I need (for every single user) create entry in every google calendar. Each user have your calendar in google. Each user use local authentication for login in mvc application. To use google calendar api I need store for each user single credential and use it, or I can enable google mvc authentication and use it? Thanks
Upvotes: 0
Views: 7005
Reputation: 119
Finally, I find this demo project https://github.com/google/google-api-dotnet-client-samples/tree/master/Calendar.ASP.NET.MVC5
and this document: https://developers.google.com/google-apps/calendar/quickstart/dotnet
My solutions is per user integration with single google credential. Then using code in demo I can update single user google calendar.
Thanks
Upvotes: 2
Reputation: 38
In my opinion your application provide following cornerstones:
user authentification for private calendar access
with the user authentication you get the user name to create a private folder to store private credential information
Hopefully this helps.
Andreas
https://www.andreasulbricht.de/cctsync/
Upvotes: 0