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.

seems having updated to the latest version of the facebook php sdk the following code is not working-

$loginUrl   =   $facebook->getLoginUrl(array(
           'canvas'    => 0,
           'fbconnect' => 1,
           'req_perms' => 'publish_stream,status_update,offline_access'
           ));

the user is not being asked for the extended permissions- some digging has come up with fb now requesting you add these permissions in the facbeook developer app- under Authenticated Referrals- i added them in and still nothing

anyone any ideas- without being able to post when a user completes an action my app is useless and am out of a job

update-

the new sdk requires different params-

$loginUrl   =   $facebook->getLoginUrl(array('scope' => 'publish_stream,status_update,offline_access'));
share|improve this question
possible duplicate of Facebook Connect Question – ifaour Sep 25 '11 at 23:55

2 Answers

up vote 0 down vote accepted

Yes, you are correct, the new oauth2 requires you to define the requested permissions in the scope parameter.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers. Thank you! – DMCS Feb 4 '12 at 17:36
$loginUrl   =   $facebook->getLoginUrl(array(
           'canvas'    => 0,
           'fbconnect' => 1,
           'scope' => 'publish_stream,status_update,offline_access'
           ));

req_perms key changed to scope

share|improve this answer
this question is outdated – Chris Mccabe Nov 2 '12 at 9:02

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.