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.

Possible Duplicate:
How to construct a permalink for objects returned by Facebook's new Graph API?

The Facebook open graph API allows a public search, e.g.

https://graph.facebook.com/search?q=watermelon

The results returned may be statuses, videos, links, photos (and others?).

Each has a post id, e.g.

100000973592583_149321401769498

I wish to construct a URL to the post. For statuses, this seems to work:

http://www.facebook.com/profile.php?id=100000973592583&v=wall&story_fbid=149321401769498

However, for a link (or video or photo), that often works, but sometimes does not. For example, a link with id

45430244790_127287890653212

needed

http://www.facebook.com/posted.php?id=45430244790&share_id=127287890653212&comments=1#s127287890653212

Does someone have experience creating bulletproof links? Are there any docs on it?

Edit: Suppose I know the type as well (video, post, photo, link, ..)

share|improve this question

marked as duplicate by Toon Krijthe, Cyrille, Donal Fellows, PaulG, A.H. Oct 6 '12 at 9:15

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Following FQL:

select permalink from stream where post_id="45430244790_127287890653212"

would return:

[
  {
    "permalink": "http://www.facebook.com/posted.php?id=45430244790&share_id=127287890653212&comments=1#s127287890653212"
  }
]
share|improve this answer
I appreciate this answer, but is there no way to construct the URL without another call to facebook for every post? – dfrankow Sep 13 '10 at 15:43
@dfrankow you can make one big group call instead of many single calls (use where post_in in (1,2,3...)). Other than that I don't know a better solution, sorry. – serg Sep 13 '10 at 16:36

Not the answer you're looking for? Browse other questions tagged or ask your own question.