1
votes

Does ASP.Net MVC's OAuthWebSecurity for Google use Google's OAuth 2.0 for authentication? ASP.Net MVC's OAuthWebSecurity for Google does not have ability to enter key or secret like Facebook and Twitter clients. Likewise, no token is returned from a successful Google authentication. Why is Google client different from Facebook and Twitter clients?

Is ASP.Net MVC's OAuthWebSecurity for Google using Google Plus, or some other approach for Google authentication?

Thanks.

1
If you're still looking for an implementation, please try mine - thanks. - Matt Johnson-Pint
@MattJohnson thank you! That's just what I was looking for. - Alan Draper

1 Answers

0
votes

I've reflected over the OAuthWebSecurity class and it is using Google OpenID interface for authentication. It's not doing OAuth. Currently, i think you will have to bake your own DotNetOpenAuth.AspNet.IAuthentication implementation. I am actually embarking on the same adventure.