我正在尝试将 HTTP POST JSON 编码数据发送到远程服务器。
使用 cURL,这将作为
curl -X POST -H "Content-Type: application/json" -d '{"name":"Jeff"}' http://somesite/someuri
我找不到这样做的 Laravel 方法。
[ * * * 更新:我的解决方案 * * * ]
我最终使用了 PHP 的 HttpRequest
$httpRequest_OBJ = new httpRequest($server, HTTP_METH_POST, NULL);
$httpRequest_OBJ->setBody($jsonEncodedData);
$httpRequest_OBJ->setContentType('application/json');
$result = $httpRequest_OBJ->send();
$reply = $result->getBody();