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'm using FB Open Graph in my application. It's not fully working. When I post a object it appears in the user's recent activity; however, it doesn't appear on their timeline. The metadata has no errors and I'm using the FBGraph gem but it also doesn't work when I do it using curl. Any advise to fix this?

share|improve this question

3 Answers

up vote 3 down vote accepted

Have you tried to use 'fb:explicitly_shared=true' in your URL. Refer: https://developers.facebook.com/docs/technical-guides/opengraph/explicit-sharing/

share|improve this answer
i wish i found this answer 8 hours ago. – djibouti33 Mar 27 at 2:48
I also wish like you :D. Lost 8 hours for this. – wanting252 Apr 24 at 3:24

Did you submit your action to get approved by facebook? If you did not do this, it will only work on your facebook account.

Also, are you sure you request the correct permission when the user authenticates, such as 'publish_stream'?

share|improve this answer
I haven't submitted it but I was using my account. We do have publish_stream permissions. – Sam Baumgarten Aug 3 '12 at 19:59
1  
FYI: It should be 'publish_actions' not 'publish_stream' More: developers.facebook.com/blog/post/2012/04/25/… – gsharma Oct 25 '12 at 16:26

When you are in development mode, and your actions have not yet been approved by Facebook, the posted actions are only visible to you and to others with developer, admin or tester privileges for your FB app.

See: Facebook action submission

Also, open graph actions will no longer appear in users' news feeds or even the Ticker: http://developers.facebook.com/bugs/398546930211799/. So you shouldn't expect activities performed in your app to appear in users' timelines, unless these activities are tagged as 'explicitly shared', and even then there's no guarantee they'll show up.

Only direct, active shares are more or less guaranteed to show up in the Timeline.

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.