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.

When I produce a Login url with scope the getUser() returns 0; Without parameters in getLoginUrl(); it returns a user id.

  $userID = $facebook->getUser();
  $params = array();
  $params['scope'] = 'email, user_about_me, user_events';
  $params['redirect_uri'] = $appurl;


  $loginUrl = $facebook->getLoginUrl($params); // doesnt work
  //$loginUrl = $facebook->getLoginUrl(); // works
  $logoutUrl = $facebook->getLogoutUrl();
  //test user
  if($userID){
share|improve this question
What is the documented behaviour? What behaviour do you expect? – Dave Hillier Dec 28 '12 at 21:27

1 Answer

Try this...

$loginUrl = $facebook->getLoginUrl(
    array(
        'redirect_uri' => $appurl,
        'scope' => 'email, user_about_me, user_events',
    )
);
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.