I am currently developing a C# MVC website which will use Google's calender API and i'm having trouble getting the OAuth 2.0 sorted out.
I am following this stackoverflow question which references the OAuth2LeggedAuthenticator
class which doesn't appear in the latest NuGet packages
Install-Package Google.Apis.Calendar.v3 -Pre
Install-Package Google.Apis.Authentication -Pre
This is because Google have moved to the OAuth 2 Authentication schema, so is there any way of doing 2 legged authentication with the latest version of the .net API?
Cheers