有人可以帮助我解释为什么我的PHP帖子不起作用。
$url = 'https://example.com/portal/api/create';
$data = array('api_key' => 'my_api_key', 'firstname' => 'test', 'surname' => 'test', 'email' => 'test@test.com', 'notes' => 'notes', 'phonecell' => '123456789');
$options = array(
'http' => array(
'header' => "Content-type: multipart/form-data\r\n",
'method' => 'POST',
'content' => http_build_query($data),
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
echo $result;
}
我已经在邮递员中对此进行了测试,但它运行正常,但是当我发送过PHP帖子时,我发现错误&#API;无效的API密钥'应该有什么理由让PHP file_get_contents
在这里做任何奇怪的事情吗?