HTTP 400错误

Posted my2020

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTTP 400错误相关的知识,希望对你有一定的参考价值。

发送请求时出现400错误,错误代码为:webResponse = (HttpWebResponse)webRequest.GetResponse();

解决办法:抛出异常

HttpWebResponse webResponse;
            try
            {
               
                webResponse = (HttpWebResponse)webRequest.GetResponse();   //请求页面信息
            }
            catch (WebException ex)
            {
                webResponse = (HttpWebResponse)ex.Response;   //获得错误发生时候服务器段错误页面的源代码
            }

 

以上是关于HTTP 400错误的主要内容,如果未能解决你的问题,请参考以下文章

PayPal IPN HTTP 错误 400 - PHP - 使用 PayPal GIT 代码

http状态返回代码400怎么解决

HTTP 400 错误是啥原因

git aws.push 返回“错误:RPC 失败;结果=22,HTTP 代码 = 400”

HTTP 400错误

HTTP 400 错误请求 - CURL PHP