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 am trying to make an app that has permission to post on user's wall. I have got the publish_stream rights from the user as well as offline access just to make sure. However now when I try to post on the app's subscribers wall using:

$status = $facebook->api("/$user_id/feed", 'POST', array('message' => "$msg"));

However when I do that then instead of posting on subscriber's wall from app it posts from the subscriber's name.

For example, let's say my app name is MyApp and I have a subscriber name Sub1. If, from my interface, I try to post a message 'Test message', it posts on Sub1's wall not by name of MyApp but instead the user himself. Can anyone tell me what might be wrong?

share|improve this question
Well', this is preatty strange :) are u sure u'r using the right access_token (the one associated with MyApp)? – ArtoAle Jun 20 '11 at 13:23
do you have an access_token ? developers.facebook.com/docs/reference/api/post – Rufinus Jun 20 '11 at 13:25
Well I didn't have access token before but now I ve it n it doesn't seem to work at all.. getSession doesn't work for me even I am using the latest code so I got access token using: kartiklad.com/… Can you tell if this seems a valid token? "135982363143562|vBdRY6_oxTgSzI-6hGmPyiHnu7A" After getting access token I'm following: eagerfish.eu/… but it gives: Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current user. – Usman Zaheer Jun 20 '11 at 15:36

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.