DotNetOpenAuth.GoogleOAuth2 icon indicating copy to clipboard operation
DotNetOpenAuth.GoogleOAuth2 copied to clipboard

DotNetOpenAuth OAuth2 Client for Google

Results 7 DotNetOpenAuth.GoogleOAuth2 issues
Sort by recently updated
recently updated
newest added

The method GoogleOAuth2Client.RewriteRequest() does not preserve the "ReturnUrl" parameter completely. I have an ASP.NET web forms application that represents its routes using url parameters (see Below) DataLayout.aspx?domain=MyModule&hierarchy=Proj;45886&tab=ProjectInformation When my login...

This fix allows you to use scopes "email" and "profile" as a replacement for deprecated scopes "https://www.googleapis.com/auth/userinfo.email" and "https://www.googleapis.com/auth/userinfo.profile".

I want to get user details : Name, LastName, Email in facebook or Google

Hello, I used this, but I have a problem. My code is like this: ``` DotNetOpenAuth.GoogleOAuth2.GoogleOAuth2Client.RewriteRequest(); AuthenticationResult result = OAuthWebSecurity.VerifyAuthentication(Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl })); ``` **Before, result.UserName contained...

Install of Nuget package fails as DotNetOpenAuth.OpenId.RelyingParty in Nuget is set to 4.2.2.13055 rather than at least that level. Current version at 4.3.4.13329 fails with "Unable to find a version...

At the `OAuthWebSecurity.VerifyAuthentication()` stage I am getting a 400 error with the following abbreviated stack trace : ``` [WebException: The remote server returned an error: (400) Bad Request.] System.Net.HttpWebRequest.GetResponse() +6518932...

Scopes https://www.googleapis.com/auth/userinfo.profile and https://www.googleapis.com/auth/userinfo.email are deprecated. See documentation https://developers.google.com/+/api/oauth. Replacing scopes are "profile" and "email", but when I add "email" scope your code change it to "https://www.googleapis.com/auth/email" which is invalid...