DotNetOpenAuth OAuth 2.0 authorization with Google
I am trying to use DNOA to connect with Facebook and Google over OAuth 2.0. The same code is working with Facebook, but isn't working with Google IAuthorizationState authorization = client.ProcessUserAuthorization(request); if (authorization == null) { // Kick off authorization request client.RequestUserAuthorization(openAuthClient.scope, new Uri(redirectUrl)); } The question is why? I start logging DNOA request and found following: 2014-03-27 12:20:19,497 (GMT+9) [6] DEBUG DotNetOpenAuth.Messaging.Channel - Preparing to send AccessTokenAuthorizationCodeRequestC (2.0) message. 2014-03-27 12:20