Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PrepareRequestUserAuthorizationAsync fails

I had very simple code which worked fine for me:

var url = System.Web.HttpContext.Current.Request.Url;
Uri callbackUrl = new System.Uri(url, "oAuth2CallBack");

var ub = new UriBuilder(callbackUrl);
// decodes urlencoded pairs from uri.Query to var
var httpValueCollection = HttpUtility.ParseQueryString(callbackUrl.Query);
httpValueCollection.Add(UrlArguments.Param, null);

// urlencodes the whole HttpValueCollection
ub.Query = httpValueCollection.ToString();

var authorizationRequest = OAuthClient.PrepareRequestUserAuthorization(new[] { "somedata" }, ub.Uri);
authorizationRequest.Send();

I've updated OAuth's NuGet packages and rewrite the code this way:

var url = System.Web.HttpContext.Current.Request.Url;
Uri callbackUrl = new System.Uri(url, "oAuth2CallBack");


var ub = new UriBuilder(callbackUrl);
// decodes urlencoded pairs from uri.Query to var
var httpValueCollection = HttpUtility.ParseQueryString(callbackUrl.Query);
httpValueCollection.Add(UrlArguments.Param, null);

// urlencodes the whole HttpValueCollection
ub.Query = httpValueCollection.ToString();

var client = new WebServerClient(new AuthorizationServerDescription
{
    TokenEndpoint = Configuration.OAuth2.TokenEndpoint,
    AuthorizationEndpoint = Configuration.OAuth2.AuthorizationEndpoint,
},
                clientIdentifier: Configuration.OAuth2.ClientIdentifier,
                clientCredentialApplicator: ClientCredentialApplicator.PostParameter(
                                        Configuration.OAuth2.ClientSecret));

var authorizationRequest = await client.PrepareRequestUserAuthorizationAsync(new[] { "somedata" }, ub.Uri);
await authorizationRequest.SendAsync();            

but PrepareRequestUserAuthorizationAsync throws exception

"Attempt by method 'DotNetOpenAuth.OAuth2.WebServerClient+d__3.MoveNext()' to access method 'System.Collections.Generic.List`1..ctor()' failed."

like image 579
Grigory Bushuev Avatar asked Nov 18 '13 16:11

Grigory Bushuev


1 Answers

The issue is that DotNetOpenAuth.OAuth2.Client references System.Net.Http.Formatters 5.0 from the WebApi nuget package. Setting the reference to System.Net.Http.Formatters 4.0 from the .NET 4.0/4.5 BCL resolves the issue and all tests still pass.

See commit on github https://github.com/rcollette/DotNetOpenAuth/commit/59fe1e820fc48df8bb079b210ac585974f8326f5

See pull request https://github.com/DotNetOpenAuth/DotNetOpenAuth/pull/350

like image 195
Richard Collette Avatar answered Nov 08 '22 17:11

Richard Collette