POST请求,不发送任何内容,isset($ _ POST)始终为false

时间:2014-02-21 14:57:25

标签: c# php json post

我是C#的新手。我尝试了其他问题的所有解决方案,但我仍然找不到有什么问题。我的代码在其他答案中很常见,但它似乎永远不会发送任何东西。我已经在我自己的服务器和我正在为服务器工作的公司尝试过。我知道这种答案以前已经被多次回答,但也许我错过了其他人的东西,所以这可能对我以外的人有用。

C#代码:

       var buttonSaveClicked = new MouseEventHandler((o, a) =>
        {
            var user_token = this.textApiKey.Text;

            if (user_token.Length == 0) MessageBox.Show("API Key cannot be empty!", "API Key Error", MessageBoxButtons.OK, MessageBoxIcon.None);

            var httpWebRequest = (HttpWebRequest) WebRequest.Create("http://localhost/networksWindows.php");
            httpWebRequest.ContentType = "application/json; charset=utf-8";
            httpWebRequest.Method = "POST";

            using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))
            {
                string json = "{\"user_token\": \"batatas\", \"bata\": \"cook\"}";

                System.Diagnostics.Debug.WriteLine(json);

                streamWriter.Write(json);
                streamWriter.Flush();
            }

            var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
            using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
            {
                var result = streamReader.ReadToEnd();
                System.Diagnostics.Debug.WriteLine(result);
                User user = JsonConvert.DeserializeObject<User>(result);

                if (user.status == "error") MessageBox.Show("Invalid API Key. Please make sure you have generated a API key and insert it correctly.", "API Key Error", MessageBoxButtons.OK, MessageBoxIcon.None);
                else if (user.status == "success")
                {
                    System.Threading.Thread t = new System.Threading.Thread(new System.Threading.ThreadStart(ThreadProc));

                    t.Start();

                    this.Close();
                }
            }

        });

我服务器中的PHP脚本:

<?php

$json = null;

if (isset($_POST['user_token']))
{
$json = $_POST['user_token'];

echo "user";
}

?>

3 个答案:

答案 0 :(得分:1)

你必须用PHP解码你的json帖子。 试试这个:

$json = json_decode($_POST);
if (isset($json['user_token']) {
  $userToken = $json['user_token'];
}

答案 1 :(得分:1)

如果您希望$_POST了解您的数据,则必须将其作为表单编码key=value&key2=value2发送,而不是作为JSON发送。

如果你想发布JSON,你需要在服务器端解码它:

$post = (array)json_decode(file_get_contents("php://input"));
if (isset($post['user_token'])) {
    // ...
}

您可以将file_get_contents("php://input")替换为$HTTP_RAW_POST_DATA,但其可用性取决于配置。

P.S。 streamWriter.Flush()电话是多余的。

答案 2 :(得分:0)

将json解码为数组:

$json = json_decode($_POST, true);