嗯,我知道标题看起来很简单,但我从3天开始查看有关如何向POST
提出webapi
请求的示例。
目前我正在使用JQuery
来执行我的POST
,但我需要一些php脚本来运行并与我的C# webAPI
交谈,而且似乎无法找到一些示例或解释怎么做。
有人给了我代码:
$response = file_get_contents('http://localhost:59040/api/Email/SendEmails');
$response = json_decode($response);
echo ($response);
但是这个没有做任何事情 - 甚至没有关于如何更多地解决问题的错误。
我需要一个php脚本来向webapi发出POST
请求,获取1个param(String)并返回一个ok的答案或错误,
答案 0 :(得分:3)
Maalls回复此帖后How do I send a POST request with PHP?
答案非常简单,代码如下:
$url = 'http://server.com/path';
$data = array('key1' => 'value1', 'key2' => 'value2');
// use key 'http' even if you send the request to https://...
$options = array(
'http' => array(
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data),
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
var_dump($result);
感谢Maalls和dbau的回答:)。