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 created below application:

require('/home/facebook.php');
function connectToFacebook()
{

    // creating new object $facebook
    $facebook = new Facebook(array(
      'appId'  => 'xxxxxx', // application id
      'secret' => 'yyyyyy', // secret
      'cookie' => true,
    ));

    return $facebook;

}



function getUser($facebook)
{
// creating empty user's object

$me = null;

    // if user is logged on facebook
    // save to $uid user ID
    // save to $me user data
    if ($facebook)  {
      try {
        $uid = $facebook->getUser();
        $me = $facebook->api('/me');
        Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYPEER] = false; Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYHOST] = 2;
      } catch (FacebookApiException $e) {
        error_log($e);
      }
    }

    return $me;
}



/**
 * new user registration
 * */
function registerNewUser($me)
{
    require '/db_conn.php';

    $insert = "INSERT INTO users (imie, email, haslo, fb_id) VALUES (" .
                "'" . $me['name'] . "', " . 
                "'" . $me['email'] . "', " . 
                "'" . sha1(time() ) . "', " .   // generation random password
                "'" . $me['id'] . "')";

    $result = $db->query($insert);

    $affected = $db->affected_rows;
    $db->close();

return $affected ==1; 


}

$facebook = connectToFacebook();
$me = getUser($facebook);
registerNewUser($me);



$page_id = 'zzzzz';

$facebook = new Facebook(array(
      'appId'  => 'xxxx', // application id
      'secret' => 'yyyy', // secret
      'cookie' => true,
    ));

$params = array('message' => 'My post on:',
        'link' => 'http://page.com', );

$post = $facebook->api('/'.$page_id.'/feed', 'post', $params);

which is launched by user on URL:

https://www.facebook.com/dialog/permissions.request?_path=permissions.request&app_id=xxxxx&redirect_uri=http://page.com/redirect.html&display=page&response_type=code&perms=publish_actions%2Cemail,offline_access&fbconnect=1&from_login=1&client_id=xxxxxx

( page.com/redirect.html redirects user to php foregoing code ).

When I (or other user) go to app using URL, in database's table occurs empty line except generated password.

I tried to add echo $e; after error_log($e); . Now script returns me information:

OAuthException: An active access token must be used to query information about the current user.

That's interesting, because in my humble opinion above URL includes access token automatically.

What do you think about my problem? I suppose, there's something incorrent inside code, but I didn't notice anything. It seems to be insurmountable for me. :)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.