Error message from DotNetOpenAuth's ReadAuthorizationRequest when passing in HttpRequestWrapper
I have a custom authorization filter for my Authorize method in my OAuth controller. When the authorization filter notes the user is logged, it stuffs the current OAuth request into the session, and ships them off to log in. After log in, in my /OAuth/Authorize endpoint, I check to see if that request is in the session, instead of immediately failing because there is not an authorization request attached to the current request. Then, I call the authorization server with that request object. The code in my Authorize action looks like this: [AcceptVerbs(HttpVerbs.Get | HttpVerbs.Post)]