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.

Since facebook make timeline now public, the my app post using stream publish does not appear in user's timeline , only in home newsfeed. Is there's anything we should do about this or anything new on publish stream or feed post regarding the new timeline feature ?

share|improve this question
What Facebook SDK are you using? JS, PHP, iOS etc. – SeanNieuwoudt Dec 18 '11 at 8:10
Isn't it not really public yet (to give people chance to hide their shady past)? – Sergio Tulentsev Dec 18 '11 at 8:10
yea, I think @SergeiTulentsev is right, with the new timeline in place , you are able to programmatically post to the users feed (home feed), but that won't necessarily show up on the timeline because the timeline shows things(actions/events) that the user did, not what applications did on the users behalf. – SeanNieuwoudt Dec 18 '11 at 8:17
PHP and JS SDK , i'm using FB.UI stream publish method to post the app post to wall. Yes, timeline is not public yet, but some facebook users now switching to timeline. It only appear when I feature (when i see my timeline activity log) the post at timeline, on the other hand, not – sue mk Dec 18 '11 at 8:18
^ I think you right. Thanks you @Sean and Sergei for the thoughts. – sue mk Dec 18 '11 at 8:23

2 Answers

Your application should have read_stream publish_stream and permissions (I think this is enough). You should send POST request to this URL https://graph.facebook.com/PROFILE_ID/feed

You can read more about it here: https://developers.facebook.com/docs/reference/api/post/

share|improve this answer

Before an action going to public you need to submit an action and it must be approved by Facebook , then only every action comes public visibility

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.