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 assume that this is because users have to grant some sort of access to my facebook application, for getUser to be available to me? Here is my code:

 <? require 'facebook.php'; ?>
 <?php

 $facebook = new Facebook(array(
 'appId' => '[//fb app id]',
 'secret' => '[//fb app secret]',
 'cookie' => true
 ));

 $uid = $facebook->getUser();
 echo $uid;

 ?>

So I guess my question is, short of prompting the user to give permission to my app, is there any other sort of unique identifier that I can grab from a fb user to prevent them from submitting more than 1 entry to my app. I have user's add submissions, but I only want to allow 1 submission per user. Thanks for the help!

share|improve this question

1 Answer

To get user id, user have to grant permission

if($uid){
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');

  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}else{
    $loginUrl = $facebook->getLoginUrl();
    echo("<br>login url=".$loginUrl);
};

After the user grant permission (see the loginUrl), you may access user id

share|improve this answer
1  
in the catch block it should be $uid = null; – ifaour Nov 18 '11 at 20:21
what do you mean he will have to grant permission? see update – Dmitry Makovetskiyd Jul 19 '12 at 8:31
actually when you add this: header('Location:'.$loginUrl); and then click the go to app, then it goes back ... with a long url,,with a get variable code.. but i dont want to send the user with a header.. :(, – Dmitry Makovetskiyd Jul 19 '12 at 8:42
why do i have to have the users permissions for a simple like button? – Dmitry Makovetskiyd Jul 19 '12 at 8:58
Cant you do without the user granting permissions,.. – Dmitry Makovetskiyd Jul 19 '12 at 9:09
show 1 more comment

protected by Community Nov 3 '12 at 14:14

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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