C# HttpWebRequest отправляет xhr запрос - 400 неверных запросов - PullRequest
0 голосов
/ 29 января 2020

Я должен отправить ajax запрос от C#. В браузере запрос выглядит так:

Request URL:https://sts-service.mycompany.com/UPNFromUserName
Request method:POST
Remote address:xxxx
Status code:
200
Version:HTTP/2.0
Referrer Policy:strict-origin-when-cross-origin

Заголовки:

 Host: sts-service.mycompany.com
 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0
 Accept: */*
 Accept-Language: en-US,en;q=0.5
 Accept-Encoding: gzip, deflate, br
 Referer: https://sts.mycompany.com/
 Content-type: application/x-www-form-urlencoded
 Content-Length: 17
 Origin: https://sts.mycompany.com
 DNT: 1
 Connection: keep-alive
 Pragma: no-cache
 Cache-Control: no-cache

Параметры: Данные формы:

 MS.Aution

Печенье: без готовки ie

И в C# мой запрос:

WebRequest webRequest = WebRequest.Create("https://sts-service.mycompany.com/UPNFromUserName");

((HttpWebRequest)webRequest).Referer = "https://sts.mycompany.com/";
((HttpWebRequest)webRequest).Host = "sts-service.mycompany.com";
((HttpWebRequest)webRequest).KeepAlive = true;
((HttpWebRequest)webRequest).AllowAutoRedirect = true;
((HttpWebRequest)webRequest).UseDefaultCredentials = true;
((HttpWebRequest)webRequest).UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0";
webRequest.ContentType = "application/x-www-form-urlencoded";
((HttpWebRequest)webRequest).Accept = "*/*";

((HttpWebRequest)webRequest).Headers.Add("Origin", "https://sts.mycompany.com");
((HttpWebRequest)webRequest).Headers.Add("Accept-Encoding", "gzip, deflate, br");
((HttpWebRequest)webRequest).Headers.Add("Accept-Language", "en-US,en;q=0.5");
((HttpWebRequest)webRequest).Headers.Add("Upgrade-Insecure-Requests", @"1");
((HttpWebRequest)webRequest).Headers.Add("DNT", @"1");
((HttpWebRequest)webRequest).AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
webRequest.Method = HttpRequestType.POST.ToString();
string msg = "MSCnE.Automation";

webRequest.ContentLength = msg.Length;
Stream reqStream = webRequest.GetRequestStream();
byte[] msgb = System.Text.Encoding.UTF8.GetBytes(msg);
reqStream.Write(msgb, 0, msgb.Length);
reqStream.Close();
var response = (HttpWebResponse)webRequest.GetResponse();

StreamReader sr = new StreamReader(response.GetResponseStream());
string Result = sr.ReadToEnd();
response.Close();

Я получаю сообщение об ошибке:

Удаленный сервер возвратил ошибку: (400) Неверный запрос.

В браузере на вкладке Сеть запрос выглядит следующим образом: enter image description here

Тип - json, но в заголовках Тип контента - application/x-www-form-urlencoded Может быть, в этом причина

1 Ответ

0 голосов
/ 29 января 2020

что-то вроде этого (не проверено):

    public async Task<string> SendPOST()
            {
                var dict = new Dictionary<string, string>();
                dict.Add("DNT", "1");
                dict.Add("someformdata","MSCnE.Automation");
                using (var formdata = new System.Net.Http.FormUrlEncodedContent(dict))
                {
                    //do not use using HttpClient() - https://docs.microsoft.com/en-us/dotnet/api/system.net.http.httpclient
                    using (System.Net.Http.HttpClient httpClient = new System.Net.Http.HttpClient())    
                    {
                        formdata.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/x-www-form-urlencoded");
                        formdata.Headers.ContentType.CharSet = "UTF-8";
                        httpClient.DefaultRequestHeaders.Add("User-Agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:68.0) Gecko/20100101 Firefox/68.0");
                        using (var response = await httpClient.PostAsync("https://sts-service.mycompany.com/UPNFromUserName", formdata))
                        {
                            if (response.IsSuccessStatusCode)
                            {
                                var postresult = await response.Content.ReadAsStringAsync();
                                return postresult;
                            }
                            else
                            {
                                string errorresult = await response.Content.ReadAsStringAsync();
                                return errorresult;
                            }
                        }
                    }
                }
            }
...