我正在尝试使用图形api和php获取大型页面配置文件图片,我按以下方式执行:
$getBigImage = get_headers('https://graph.facebook.com/'.$PID.'/picture?type=large&access_token='.$this->token.'',1);
$data['fbBigImage'] = $getBigImage['Location'];
当我有时会收到以下错误时,我的问题就出现了:
[13-Sep-2015 08:19:37 America/New_York] PHP Warning: get_headers(): php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in line 252
[13-Sep-2015 08:19:37 America/New_York] PHP Warning: get_headers(https://graph.facebook.com/1437355116498102/picture?type=large&access_token=***): failed to open stream: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in line 252
我需要使用另一种方法或替代get_headers,因为它有时会失败(大部分时间它都有效,但我需要一些东西来处理100%的情况)
谢谢!
答案 0 :(得分:0)
只是为了检查是否是网络问题,您可以尝试运行:
<?php
print_r(get_headers('http://google.com'));
由于Google是国际连接测试人员(:P),您可以确定它是否在网络上。
另外,你使用一些代理吗? (如果是)是在系统上还是在每个浏览器中设置?