Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have problems with simple PHP function file_get_contents... It shows NULL but it's enabled on the server so I don't know where is problem?

<?php
$url = "http://graph.facebook.com/oauth/access_token?client_id=(ID)&
    client_secret=(PW)&grant_type=client_credentials";
$app_token = file_get_contents($url);
echo $app_token;
?>

(ID) and (PW) are appID and appSecret

Thanks in advance!

share|improve this question
if you type $url value directly in browser, then what you get ? – GBD Oct 27 '12 at 8:36
I get result with token... In this format: AppID|Token – Ante Dražić Oct 27 '12 at 8:37
what you get in var_dump($app_token) ? – GBD Oct 27 '12 at 8:38
I don't know what is var_dump... I use echo $app_token but please write me full syntax of var_dump – Ante Dražić Oct 27 '12 at 8:40
replace http with https in url and then try – GBD Oct 27 '12 at 8:41
show 2 more comments

2 Answers

Personally, I would use php curl and https (http://developers.facebook.com/docs/reference/api/)

HTTP instead of HTTPS would output: { "error": { "message": "client_secret must be passed over HTTPS", "type": "OAuthException", "code": 1 } }

Please turn on error reporting during development. You may get: Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in /usr/local/apache2/htdocs/xxxxx/test12345.php on line 3

share|improve this answer
Yea but I don't know how to use cURL :-P – Ante Dražić Oct 27 '12 at 8:40

Use need to use HTTPS, and check what wrappers are enabled

On Windows you should see this in php.ini

extension=php_openssl.dll

Check the wrappers

<?php
    var_dump(stream_get_wrappers());
?>

Which should give an output such as

array(12) {
  [0]=>
  string(5) "https"
  [1]=>
  string(4) "ftps"
  [2]=>
  string(13) "compress.zlib"
  [3]=>
  string(14) "compress.bzip2"
  [4]=>
  string(3) "php"
  [5]=>
  string(4) "file"
  [6]=>
  string(4) "glob"
  [7]=>
  string(4) "data"
  [8]=>
  string(4) "http"
  [9]=>
  string(3) "ftp"
  [10]=>
  string(4) "phar"
  [11]=>
  string(3) "zip"

Notice HTTPS is in the array.

A full example of how to get the token

<?php 

    $app_id = "YOUR_APP_ID";
    $app_secret = "YOUR_APP_SECRET";
    $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']);

 ?>

http://developers.facebook.com/docs/howtos/login/login-as-app/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.