自定义 header 未包含在 http post 请求中

Custom header not included in the http post request

Box.com 的企业用户配置 API 需要请求 header 中的 OAUTH2 令牌 ("Authorization: Bearer faKE_toKEN_1234")。我已经 运行 下面的代码针对 http://www.xhaus.com/headers, http://httpbin.org/post and http://www.cs.tut.fi/cgi-bin/run/~jkorpela/echo.cgi 并使用 Microsoft 网络监视器 观察到数据包,据我所知我的请求 header 不包括"Authorization" 我希望包含在其中的值。

下面的代码是否遗漏了什么(代码或点)?

    HttpWebRequest request = (HttpWebRequest) WebRequest.Create(API_URL);
    request.Method = "POST";
    request.ServicePoint.Expect100Continue = false;
    request.ContentType = "application/x-www-form-urlencoded";
    request.Timeout=10000;

    string postData = Parameters;
    ASCIIEncoding encoding = new ASCIIEncoding ();
    byte[] byte1 = encoding.GetBytes (postData);
    request.ContentLength = byte1.Length;
    Stream reqStream = request.GetRequestStream();
    reqStream.Write(byte1, 0, byte1.Length);
    reqStream.Close();

    //This is puzzling me, why can't I see this header anywere 
    //when debugging with packet monitor etc?
    request.Headers.Add("Authorization: Bearer " + access_token);


    HttpWebResponse response = (HttpWebResponse) request.GetResponse();
    Stream dataStream = response.GetResponseStream ();
    StreamReader reader = new StreamReader (dataStream);
    string txtResponse = reader.ReadToEnd ();
    return txtResponse;

我认为您需要在 写入 postData 并关闭请求流之前设置 header 。这似乎对我有用:

static void Main(string[] args)
{
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.xhaus.com/headers");
    request.Method = "POST";
    request.ServicePoint.Expect100Continue = false;
    request.ContentType = "application/x-www-form-urlencoded";
    request.Timeout = 10000;

    request.Headers.Add("Authorization: Bearer_faKE_toKEN_1234");

    string postData = "postData";
    ASCIIEncoding encoding = new ASCIIEncoding();
    byte[] byte1 = encoding.GetBytes(postData);
    request.ContentLength = byte1.Length;
    Stream reqStream = request.GetRequestStream();
    reqStream.Write(byte1, 0, byte1.Length);
    reqStream.Close();

    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    Stream dataStream = response.GetResponseStream();
    StreamReader reader = new StreamReader(dataStream);
    string txtResponse = reader.ReadToEnd();

    Console.WriteLine(txtResponse);
    Console.ReadKey();
}