是否可以发送一个HTTP POST
with Flurl
orFlurl.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 变量访问它,所以如果可以的话,怎么办?