PHP - 通过file_get_contents发布 JSON
2022-08-30 15:18:37
我正在尝试将 JSON 内容发布到远程 REST 终结点,但“内容”值在交付时显示为空。所有其他标头等都被正确接收,并且 Web 服务使用基于浏览器的测试客户端成功测试。
我在下面指定“content”字段的语法是否有问题?
$data = array("username" => "duser", "firstname" => "Demo", "surname" => "User", "email" => "example@example.com");
$data_string = json_encode($data);
$result = file_get_contents('http://test.com/api/user/create', null, stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => array('Content-Type: application/json'."\r\n"
. 'Authorization: username:key'."\r\n"
. 'Content-Length: ' . strlen($data_string) . "\r\n"),
'content' => $data_string)
)
));
echo $result;