I'm trying to get my FB app access token using the following code:
$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']);
It works fine from localhost but not from my server (connection times out). The openssl library is enabled according to phpinfo().
Update: the problem seems to occur on any https URL. allow_url_fopen is On.
Update 2: it seems like it is a firewall issue. I can't wget any https url when I log on the server via SSH. I've asked them to open port 443.