HttpWebRequest导致响应不以HTTP.Data开始

本文关键字:HTTP Data 开始 响应 HttpWebRequest | 更新日期: 2023-09-27 17:49:55

我正在尝试使用craigslist批量发布以下操作:

HttpWebRequest request = null;
Uri uri = new Uri("https://post.craigslist.org/bulk-rss/post");
request = (HttpWebRequest)WebRequest.Create(uri);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = FormattedXmlDocument.InnerXml.Length;
using (Stream writeStream = request.GetRequestStream())
{
    UTF8Encoding encoding = new UTF8Encoding();
    byte[] bytes = encoding.GetBytes(FormattedXmlDocument.InnerXml);
    writeStream.Write(bytes, 0, bytes.Length);
}
string result = string.Empty;
request.ProtocolVersion = System.Net.HttpVersion.Version11;
request.KeepAlive = false;
try
{
    using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
    {
        using (Stream responseStream = response.GetResponseStream())
        {
            using (System.IO.StreamReader readStream = new System.IO.StreamReader(responseStream, Encoding.UTF8))
            {
                result = readStream.ReadToEnd();
            }
        }
    }
}
catch (Exception exp)
{
    // MessageBox.Show(exp.Message);
}

当执行这行代码时

using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())

我得到了异常:

The remote server returned an error: (500) Internal Server Error.

我使用fiddler检查请求,它得到以下错误:

Response does not start with HTTP.Data:

和包看起来像这样:

POST https://post.craigslist.org/bulk-rss/post HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: post.craigslist.org
Content-Length: 739
Expect: 100-continue
Connection: Keep-Alive
<rdf:RDF xmlns="http://purl.org/rss/1.0/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cl="http://www.craigslist.org/about/cl-bulk-ns/1.0"><channel><items><rdf:li rdf:resource="TestJobPost1" /></items><cl:auth username="cl@flazingo.com" password="2749saturn" accountID="14" /></channel><item rdf:about="TestJobPost1"><cl:category>sof</cl:category><cl:area>nyc</cl:area><cl:subarea>stn</cl:subarea><cl:neighborhood>Grasmere</cl:neighborhood><cl:jobInfo compensation="100000.00" telecommuting="0" partTime="0" contract="0" nonprofit="0" internship="0" disability="0" recruitersOK="0" phoneCallsOK="0" okToContact="0" okToRepost="0" /><title>First Position</title><description><![CDATA[teset]]></description></item></rdf:RDF>

HttpWebRequest导致响应不以HTTP.Data开始

写入request.GetRequestStream()将开始向服务器发送数据。

相关文章: