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 downloaded the PHP class from github which is the wrapper for their Open Graph API. I can log in and list freinds and images etc. But what I am really struggling with is allowing for extended permissions to allow posting to a users wall.

I know somewhere I need to add "scope=publish_stream" to allow this option and can only assume it is on the getLoginUrl method but I am having next to know joy with it.

Can anyone help me.

Steve

share|improve this question

2 Answers

You need offline_access included in your permissions.

share|improve this answer
Now I am confused!?! - is that a parameter I pass or is it something I need to request!. – user343035 May 17 '10 at 12:57
1  
Ok its an authentication parameter still stuglling about where to invoke this using the class on github. would it be something like - $loginUrl = $facebook->getLoginUrl(array("scope=publish_stream,offline_access")); – user343035 May 17 '10 at 13:00
Sorry @john This doesn't actually provide a correct answer. You're telling them to ask for a permission that isn't related to the question asked. Plus you don't show them how to even request this permission (the actual question) – TommyBs Jan 10 at 16:41

$loginUrl = $facebook->getLoginUrl(array('req_perms'=>'publish_stream'));

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.