PHP Post for API返回错误

时间:2018-05-09 02:01:44

标签: php api http post

有人可以帮助我解释为什么我的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在这里做任何奇怪的事情吗?

0 个答案:

没有答案