开发者

Windows Phone 7 HttpRequest Unable to see true Error Code and response details

开发者 https://www.devze.com 2023-02-08 22:50 出处:网络
I have to call a somewhat broken API from a Windows Phone 7 application.The API returns a 302 error and a cookie to the authentication request.I\'ve tried every way I\'ve been able to find in the MSDN

I have to call a somewhat broken API from a Windows Phone 7 application. The API returns a 302 error and a cookie to the authentication request. I've tried every way I've been able to find in the MSDN documentation for using ClientHTTP instead of BrowserHTTP (registering the prefix, using the call to explicitly create a ClientHTTP using Request), but the 302 is getting translated to a 404 and I'm not seeing the cookies on the response. I've tried a WebClient, I've tried an HttpRequest and it is always the translated error message. If I allocat开发者_JS百科e a CookieContainer for the HttpRequest, I get a null argument exception when the client stack is parsing the returned message. I can see that the response is coming back as expected via Fiddler.


It sounds like it may be trying to follow a redirect and failing. Have you tried using HttpWebRequest and setting the AllowAutoRedirect property to false?

0

精彩评论

暂无评论...
验证码 换一张
取 消