I had a very simple code that 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 updated the OAuth NuGet packages and rewrote the code as follows:
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 exception
"An attempt by the 'DotNetOpenAuth.OAuth2.WebServerClient + d__3.MoveNext ()' method to access the access method 'System.Collections.Generic.List`1..ctor ()' failed."
c # asp.net-mvc asp.net-mvc-5 dotnetopenauth
Grigory bushuev
source share