我尝试从http://ipinfo.io获取GeoLocation数据,
这是我的方式:
$resp = file_get_contents('http://ipinfo.io/json');
$data = json_decode($resp);
它返回错误:
Warning: file_get_contents(http://ipinfo.io/json): failed to open stream: Permission denied in ....
但是我在浏览器的URL框中手动访问了链接(http://ipinfo.io/json),它显示了正确的json。
我也尝试用cURL:
$curlSession = curl_init();
curl_setopt($curlSession, CURLOPT_URL, "ipinfo.io/json");
curl_setopt($curlSession, CURLOPT_BINARYTRANSFER, true);
curl_setopt($curlSession, CURLOPT_RETURNTRANSFER, true);
$resp = curl_exec($curlSession);
if (FALSE === $resp) {
echo curl_errno($curlSession);
}
curl_close($curlSession);
它回显了7个,我在互联网上查找,错误7意味着无法连接到服务器。
知道为什么吗?
谢谢
答案 0 :(得分:0)
通常会将服务器配置为阻止请求标头中没有User-Agent
字符串的请求,这样您就可以向context
添加file_get_contents
参数,为用户提供信息 - 代理和您需要的任何其他标头。
$args=array(
'http'=>array(
'method' => "GET",
'header' => implode( "\n", array(
'User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0',
'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Host: ipinfo.io'
)
)
)
);
/* create the context */
$context=stream_context_create( $args );
$resp = file_get_contents( 'http://ipinfo.io/json', FILE_TEXT, $context );
$data = json_decode( $resp );
echo '<pre>',print_r( $data,true ),'</pre>';
答案 1 :(得分:0)
我在这里看到两个看似合理的解释。
1:您使用的是糟糕的DNS服务器。试试GoogleDNS(8.8.8.8)。 curl_setopt($ curlSession,CURLOPT_DNS_LOCAL_IP4, '8.8.8.8');
如果修复了该问题,请与您的DNS提供商联系并与他们一起解决
2:你被禁止了。尝试只为他们的ip创建一个TCP套接字,看看你是否可以这样做。
Paragraph
如果你不能这样做,你可能是被禁止的
答案 2 :(得分:0)
我运行http://ipinfo.io,我们不阻止访问任何IP(我们对来自IP的速率限制请求,但这会导致HTTP状态代码,而不是阻止的连接)。这听起来像是我的服务器的配置问题。有些主机会锁定file_get_contents
,因此无法打开网址,或者可能已阻止http://ipinfo.io。几种方法可以追踪这一点:
1)您可以使用file_get_contents
打开另一个网址吗?例如。当你file_get_contents('http://google.com')
时会发生什么。如果您收到权限被拒绝错误,那么您应该与您的托管服务提供商联系
2)命令行curl
是否适用于ipinfo.io? -i -v
标志应该为您提供有关此处发生的更多信息。以下是成功的请求:
$ curl -iv ipinfo.io
* Rebuilt URL to: ipinfo.io/
* Trying 54.68.119.255...
* Connected to ipinfo.io (54.68.119.255) port 80 (#0)
> GET / HTTP/1.1
> Host: ipinfo.io
> User-Agent: curl/7.49.1
> Accept: */*
>
< HTTP/1.1 200 OK
HTTP/1.1 200 OK
< Access-Control-Allow-Origin: *
Access-Control-Allow-Origin: *
< Content-Type: application/json; charset=utf-8
Content-Type: application/json; charset=utf-8
< Date: Sun, 15 Jan 2017 18:38:44 GMT
Date: Sun, 15 Jan 2017 18:38:44 GMT
< Server: nginx/1.8.1
Server: nginx/1.8.1
< Set-Cookie: first_referrer=; Path=/
Set-Cookie: first_referrer=; Path=/
< X-Content-Type-Options: nosniff
X-Content-Type-Options: nosniff
< Content-Length: 252
Content-Length: 252
< Connection: keep-alive
Connection: keep-alive
<
{
"ip": "24.6.61.239",
"hostname": "c-24-6-61-239.hsd1.ca.comcast.net",
"city": "Mountain View",
"region": "California",
"country": "US",
"loc": "37.3845,-122.0881",
"org": "AS7922 Comcast Cable Communications, LLC",
"postal": "94040"
* Connection #0 to host ipinfo.io left intact
}