gpt4 book ai didi

php - 来自 WikiMedia API 的 cURL HTTP 请求不起作用

转载 作者:可可西里 更新时间:2023-11-01 17:05:50 25 4
gpt4 key购买 nike

我已经阅读了大量的 cURL 教程(我使用的是 PHP)并且总是有相同的基本代码,这对我不起作用!没有具体错误,只是没有结果。

我想从维基百科发出 HTTP 请求并获得 JSON 格式的结果。

代码如下:

$handle = curl_init();

$url = "http://fr.wikipedia.org/w/api.php?action=query&titles=Albert%20Einstein&prop=info&format=json";

curl_setopt_array($handle,
array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true
)
);

$output = curl_exec($handle);

if (!$output) {
exit('cURL Error: '.curl_error($handle));
}

$result= json_decode($output,true);
print_r($result);

curl_close($handle);

想知道我做错了什么。

最佳答案

您的代码是正确的,但维基百科似乎在使用 PHP curl 时没有发回数据(可能必须设置一些 header 或其他参数才能使其工作)。

如果您只需要检索一些数据,您可以简单地使用 file_get_contents,效果很好:

$output = file_get_contents("http://fr.wikipedia.org/w/api.php?action=query&titles=Albert%20Einstein&prop=info&format=json");
echo $output;

编辑:

仅供引用,我发现了问题所在。在该 URL 上运行 curl -v 时,会出现以下内容:

*   Trying 91.198.174.192...
* Connected to fr.wikipedia.org (91.198.174.192) port 80 (#0)
> GET /w/api.php?action=query&titles=Albert%20Einstein&prop=info&format=json HTTP/1.1
> Host: fr.wikipedia.org
> User-Agent: curl/7.47.0
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Date: Wed, 17 May 2017 13:54:31 GMT
< Server: Varnish
< X-Varnish: 852298595
< X-Cache: cp3031 int
< X-Cache-Status: int
< Set-Cookie: WMF-Last-Access=17-May-2017;Path=/;HttpOnly;secure;Expires=Sun, 18 Jun 2017 12:00:00 GMT
< Set-Cookie: WMF-Last-Access-Global=17-May-2017;Path=/;Domain=.wikipedia.org;HttpOnly;secure;Expires=Sun, 18 Jun 2017 12:00:00 GMT
< X-Client-IP: 86.214.172.57
< Location: https://fr.wikipedia.org/w/api.php?action=query&titles=Albert%20Einstein&prop=info&format=json
< Content-Length: 0
< Connection: keep-alive
<
* Connection #0 to host fr.wikipedia.org left intact

所以实际的内容是在 https url 上,而不是在 http 上,所以通过请求 https://fr.wikipedia.org/w/api.php?action=query&titles=Albert%20Einstein&prop= info&format=json 它应该可以直接工作。

它与 file_get_contents 一起工作的原因是因为在这种情况下重定向是自动完成的。

关于php - 来自 WikiMedia API 的 cURL HTTP 请求不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44024747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com