0

是否可以发送一个HTTP POSTwith FlurlorFlurl.Http所以我可以像服务器端一样访问它$_POST['foo']

我之前可以发布 json

dynamic responses = await Serverpath.PostJsonAsync(
                       new { foo = "foo", bar = "bar" })
                       .ReceiveJsonList();

并在服务器端收到它

$json = json_decode(file_get_contents("php://input"), true);

但是现在我只想发送一个小字符串并通过 $_POST 变量访问它,所以如果可以的话,怎么办?

4

1 回答 1

2

这比我想象的要容易。

我想出了这个解决方案

dynamic response = await ServerAddress.PostUrlEncodedAsync(new { foo = "bar" });

服务器端:$_POST['foo']

于 2016-05-03T07:31:17.293 回答