1

C#でリクエストを送信するためにHttpWebRequestを使用しています

リクエストは次のようになります。

POST https://website.com/file HTTP/1.1
Host: api.website.com
User-Agent: useragent
Content-Length: 81
Accept: */*
Accept-Language: en;q=1, fr;q=0.9, de;q=0.8, ja;q=0.7, nl;q=0.6, it;q=0.5
Content-Type: application/x-www-form-urlencoded; charset=utf-8
Accept-Encoding: gzip, deflate
Connection: keep-alive

しかし、それは次のように表示されています:

POST https://website.com/file HTTP/1.1
Accept-Encoding: gzip, deflate
Accept-Language: en;q=1, fr;q=0.9, de;q=0.8, ja;q=0.7, nl;q=0.6, it;q=0.5
User-Agent: useragent
Accept: */*
Content-Type: application/x-www-form-urlencoded; charset=utf-8
Host: api.website.com
Content-Length: 97
Connection: Keep-Alive

httpwebrequest の順序を変更する方法を検索しようとしましたが、何も見つかりませんでした。

4

0 に答える 0