如何修复400 Bad Request错误?

Tre*_*and 5 c#

我得到一个远程服务器尝试运行我的代码时返回错误:(400)Bad Request错误。任何帮助,将不胜感激。谢谢。

    // Open request and set post data
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("myurl.com/restservice/Login");
    request.Method = "POST";
    request.ContentType = "application/json; charset:utf-8";
    string postData = "{ \"username\": \"testname\" },{ \"password\": \"testpass\" }";

    // Write postData to request url
    using (Stream s = request.GetRequestStream())
    {
        using (StreamWriter sw = new StreamWriter(s))
            sw.Write(postData);
    }

    // Get response and read it
    using (Stream s = request.GetResponse().GetResponseStream()) // error happens here
    {
        using (StreamReader sr = new StreamReader(s))
        {
            var jsonData = sr.ReadToEnd();
        }
    }
Run Code Online (Sandbox Code Playgroud)

JSON编辑

变成:

{ \"username\": \"jeff\", \"password\": \"welcome\" }
Run Code Online (Sandbox Code Playgroud)

但仍然无法正常工作。

编辑

这是我发现有效的方法:

       // Open request and set post data
    HttpWebRequest request = (HttpWebRequest)WebRequest.Create("myurl.com/restservice/Login");
    request.Method = "POST";
    request.ContentType = "application/json";
    string postData = "{ \"username\": \"testname\", \"password\": \"testpass\" }";

    // Set postData to byte type and set content length
    byte[] postBytes = System.Text.UTF8Encoding.UTF8.GetBytes(postData);
    request.ContentLength = postBytes.Length;

    // Write postBytes to request stream
    Stream s = request.GetRequestStream();
    s.Write(postBytes, 0, postBytes.Length);
    s.Close();

    // Get the reponse
    WebResponse response = request.GetResponse();

    // Status for debugging
    string ResponseStatus = (((HttpWebResponse)response).StatusDescription);

    // Get the content from server and read it from the stream
    s = response.GetResponseStream();
    StreamReader reader = new StreamReader(s);
    string responseFromServer = reader.ReadToEnd();

    // Clean up and close
    reader.Close();
    s.Close();
    response.Close();
Run Code Online (Sandbox Code Playgroud)

jor*_*hmv 5

你能试一下吗string postData = "[{ \"username\": \"testname\" },{ \"password\": \"testpass\" }]";

这样你就可以发送一个由 2 个对象组成的数组

编辑:另外,也许您真正想要发送的只是一个具有 2 个属性的对象,那么它就是string postData = "{ \"username\": \"testname\", \"password\": \"testpass\" }"

  • 如果数据无效,许多 REST 服务会返回 HTTP 400,例如 Viamenete 和 Palletways (3认同)