我正在尝试使用以下代码获得我的FB应用程序访问令牌:
$app_token_url = "https://graph.facebook.com/oauth/access_token?"
. "client_id=" . $app_id
. "&client_secret=" . $app_secret
. "&grant_type=client_credentials";
$response = file_get_contents($app_token_url);
$params = null;
parse_str($response, $params);
echo("This app's access token is: " . $params['access_token']);
它从localhost
工作得很好,但不是从我的服务器(连接超时)。openssl库是根据phpinfo()启用的。
更新:这个问题似乎发生在任何https URL上。allow_url_fopen是On.
更新2:似乎是防火墙问题。当我通过SSH登录服务器时,我无法获得任何https url。我要求他们打开443端口
尝试检查您的openssl可以包装数据是否在您的服务器?
检查代码:
<?php
$check = stream_get_wrappers();
echo 'openssl: ', extension_loaded ('openssl') ? 'isload':'noload','<br>';
echo 'http: ', in_array('http', $check) ? 'ok':'no','<br>';
echo 'https: ', in_array('https', $check) ? 'ok':'no','<br>';
?>
if ok将得到输出:
openssl: isload
http: ok
https: ok
<?php
$url = 'https://www.google.com.eg';
function curl_get_contents($url){
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
echo curl_get_contents($url);
?>
尝试增加超时限制:
<?php
$context = stream_context_create(array(
'http' => array(
'timeout' => 60
)
)
);
file_get_contents("http://example.com/", 0, $context);
?>