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 use facebook Graph API to create a feed for facebook from my own web site. It is successfully created and returned with an ID of the feed.

My question is, is it possible to create a link to this individual feed in facebook so that user from my web site can directly click and open that feed?

I know for twitter and foursquare this is possible, as I have done it.

Thank you, George

share|improve this question

1 Answer

up vote 1 down vote accepted

I'm not sure if there's a "graph way" of doing it, but you can construct such a url given the user id/username and the post id (which you have):

http://www.facebook.com/USERNAME_OR_ID/posts/POST_ID

that url should take the user to the post.


Edit

I take it back, here's the "graph way" of doing it, using the FQL stream table:

SELECT post_id, permalink
FROM stream
WHERE post_id = "USERID_POSTID"

I'm not sure why the post_id is made of the user id + '_' + post id, but that's how it looks like. You can see the user posts like so:

SELECT post_id, permalink
FROM stream
WHERE source_id = me()

(try it)

share|improve this answer
Thank you Nitzan, it is working! How cool is that! – gsun3000 Apr 25 '12 at 16:34

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.