需要从需要用户名/密码才能访问的 Web 服务中使用一些数据。
以下返回 NULL
$service_url = 'https://example.com/2365139.json';
$curl = curl_init($service_url);
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($curl, CURLOPT_USERPWD, "username:password");
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $curl_post_data);
$curl_response = curl_exec($curl);
$response = json_decode($curl_response);
curl_close($curl);
var_dump($response);
当我在浏览器中点击https://example.com/2365139.json时,它会提示输入 un/pw,当我输入它们时,它会显示 JSON,所以数据在那里,但我上面写的东西不起作用。