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 this problem with my code, iam trying to upload an image to a users wall, but it give me following error:

Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. thrown in /var/www/parkourjams.dk/emilaagaard/customers/fbgen/core/facebook/base_facebook.php on line 1238

My code is:

<?php
session_start();
require 'facebook/facebook.php';
$app_id = "438648619527874";
$app_secret = "HIDDEN";
$facebook = new Facebook(array(
  'appId'  => $app_id,
  'secret' => $app_secret,
  'fileUpload' => true,
  'cookie' => true
));

$post_login_url = "http://emilaagaard.dk/customers/fbgen/core/test.php";
$code = $_REQUEST["code"];
if (empty($code)) {
    $dialog_url= "http://www.facebook.com/dialog/oauth?"
       . "client_id=" .  $app_id 
       . "&redirect_uri=" . urlencode( $post_login_url)
       .  "&scope=publish_stream";
      echo("<script>top.location.href='" . $dialog_url 
      . "'</script>");
} else {
    $token_url="https://graph.facebook.com/oauth/access_token?"
       . "client_id=" . $app_id 
       . "&redirect_uri=" . urlencode( $post_login_url)
       . "&client_secret=" . $app_secret
       . "&code=" . $code;

       // curl
       $ch = curl_init();
       curl_setopt($ch, CURLOPT_URL, $token_url);
       curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
       $response = curl_exec($ch); 
       curl_close($ch);

      $params = null;
      parse_str($response, $params);
      $access_token = $params['access_token'];
      echo "Token: " . $access_token . "<br /><br />";

    $graph_url= "https://graph.facebook.com/me/photos?"
        . "access_token=" .$access_token;

    // Post it!
    $user = $facebook->getUser();

    $args = array(
      'message' => 'Photo Caption', 
      'image' => '@'.realpath("ac.png")
    );

    $user = $facebook->getUser();
    $user_profile = $facebook->api('/me');

    if ($user) {
        print_r($user);
        echo "Username: " . $user_profile['username'];
        try {
            // We have a valid FB session, so we can use 'me'
            $data = $facebook->api('/me/photos', 'post', $args);
            echo $data;
        } catch (FacebookApiException $e) {
            print $e;
        }
    } else {
        echo "Dead user";
        $loginUrl = $facebook->getLoginUrl();
        print ', try <a href="' . $loginUrl . '">login</a></script>';
    }

    echo '</body></html>';
}
?>

I really hope for someone out there can help me, iam tired and have probably code-blinded my self for staying up all night after a party to finish this.

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

if you are testing it on local server

insert

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

after curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);


insert

Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYPEER] = false;

$facebook->setAccessToken($access_token);

before $user = $facebook->getUser();

share|improve this answer
Is testing on my public server, what should i do then? link – Emil Aagaard Andreæ Dec 17 '12 at 15:25
try the code on public server. If it works then try removing the CURLOPT_SSL_VERIFYPEER part. – Usama Ahmed Dec 17 '12 at 15:32
Man, you are the best! Thanks! :-) – Emil Aagaard Andreæ Dec 17 '12 at 16:34

enter image description here

Please check out similar problem on this link

share|improve this answer
Give the same error. – Emil Aagaard Andreæ Dec 17 '12 at 12:47
I tried to - But it seems to that it wont even let me connect to the user right now? link – Emil Aagaard Andreæ Dec 17 '12 at 14:57
@EmilAagaardAndreæ it works man, I just tried it and ur app just posted a photo on my wall via ur app -- see screen shot – Shpat Ferizi Dec 17 '12 at 15:52
Yeah, it was after i putted did this: nsert code Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYPEER] = false; $facebook->setAccessToken($access_token); before $user = $facebook->getUser(); – Emil Aagaard Andreæ Dec 17 '12 at 18:28

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.