0

Flight PHP REST サーバーをセットアップしました。1 つのエンドポイントで POST データを予期し、POST データの 1 つに基づいてデータベースからデータを取得し、JSON として返します。

Chrome で Postman REST 拡張機能を使用すると、正しい結果が表示されます。しかし、C# アプリケーションを使用して呼び出しを行うと、$_POST が空のように見えるため、返された json は null になります。

これは私のフライト index.php です:

Flight::route('POST /getText', function(){  
  // Create a new report class:
  $reportText = new ReportText;
  $theText = $reportText->ParsePost($_POST);
  if ($theText == null)
  {
    echo null;
  }
  else
  {
    echo json_encode($theText);
  }        
});

これは私のParsePostです:

public function ParsePost($PostDictionary)
{
    $textArray = null;
    foreach ($PostDictionary as $key => $value)
    {
        if (!empty($value))
        {
            list($tmp, $id) = explode("_", $key);
            $text = $this->geFooWithText($id);
            $textArray[$key] = "bar";
        }
    }

    return $textArray;
}

これは私のC#の部分です:

private static async Task RunAsyncPost(string requestUri)
{
    using (var client = new HttpClient())
    {
        // Send HTTP requests
        client.BaseAddress = new Uri("myUrl");
        client.DefaultRequestHeaders.Accept.Clear();
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

        try
        {
            // HTTP POST
            var response = await client.PostAsJsonAsync(requestUri, new { question_8 = "foo", question_9 = "bar" });
            response.EnsureSuccessStatusCode(); // Throw if not a success code.
            if (response.IsSuccessStatusCode)
            {
                var json = await response.Content.ReadAsStringAsync();
                if (string.IsNullOrEmpty(json))
                {
                    throw new ArgumentNullException("json", @"Response from the server is null");    
                }

                var dictionary = JsonConvert.DeserializeObject<Dictionary<string, string>>(json);

                foreach (var kvp in dictionary)
                {
                    Debug.WriteLine("Key: {0}, Value: {1}", kvp.Key, kvp.Value);
                }
            }
        }
        catch (HttpRequestException e)
        {
            // Handle exception.
            Debug.WriteLine(e.ToString());
            throw;
        }
    }
}

これは Postman からの応答です。

{
  "question_8": "foo",
  "question_9": "bar"
}

C# を使用した呼び出しで何かが足りないようです。

[アップデート]

この投稿 ( Unable to do a HTTP POST to a REST service pass json through C# ) では、同じ問題が発生しているようです。Fiddler の使用が提案されました。

Postman と x-www-form-urlencoded を使用:

POST http://myHost/api/getText HTTP/1.1
Host: myHost
Connection: keep-alive
Content-Length: 29
Cache-Control: no-cache
Origin: chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36
Content-Type: application/x-www-form-urlencoded
Accept: */*
Accept-Encoding: gzip,deflate
Accept-Language: nl-NL,nl;q=0.8,en-US;q=0.6,en;q=0.4

question_8=foo&question_9=bar

Postman とフォームデータの使用:

POST http://myHost/api/getText HTTP/1.1
Host: myHost
Connection: keep-alive
Content-Length: 244
Cache-Control: no-cache
Origin: chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryvb4wmaP4KooT6TFu
Accept: */*
Accept-Encoding: gzip,deflate
Accept-Language: nl-NL,nl;q=0.8,en-US;q=0.6,en;q=0.4

------WebKitFormBoundaryvb4wmaP4KooT6TFu
Content-Disposition: form-data; name="question_8"

foo
------WebKitFormBoundaryvb4wmaP4KooT6TFu
Content-Disposition: form-data; name="question_9"

bar
------WebKitFormBoundaryvb4wmaP4KooT6TFu--

私のC#アプリケーションを使用する:

POST http://myHost/api/getText/ HTTP/1.1
Accept: application/json
Content-Type: application/json; charset=utf-8
Host: myHost
Content-Length: 50
Expect: 100-continue
Connection: Keep-Alive

{"question_8":"foo","question_9":"bar"}

C# アプリケーションは、別の方法で明確に送信しています。

4

1 に答える 1

0

問題が見つかりました。

client.PostAsJsonAsync()Fiddler でわかるように、私は POST データを json として送信するためです。

PHP は、POST データが json 形式であることを想定していません。そのデータを読み取るに$data = file_get_contents('php://input');は、PHP ファイルで使用する必要があります。

キーと値を取得したので、続行できます。PHP には $_JSON 変数が必要なようです ;)

于 2014-11-20T19:13:27.827 に答える