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 attempting to retrieve the "shares" graph data for a number of pages in JSON format. I suspect that the errors I am encountering stem from the fact that some of the URLs have commas in them, and are being parsed as an attempt to pass multiple ids.

Returns graph data.
https://graph.facebook.com/?ids=http://celebritybabies.people.com/2012/08/23/backstreet-boys-howie-dorough-expecting-second-son/

Returns error 2500 "Cannot specify an empty identifier"
https://graph.facebook.com/?ids=http://www.people.com/people/article/0,,20624518,00.html

Encode the commas, still returns 2500
https://graph.facebook.com/?ids=http://www.people.com.people.article/0%2C%2C20624518%2C00.html

share|improve this question

2 Answers

up vote 1 down vote accepted

There doesn't seem to a way around it other than to use the normal inspection

http://graph.facebook.com/http://www.people.com/people/article/0,,20624518,00.html

You may have to file a bug at http://developers.facebook.com/bugs though I feel as the answer would most likely be "Status by design".

share|improve this answer

You could try using FQL instead, querying the link_stat table:

SELECT url, normalized_url, share_count, comments_fbid FROM link_stat
  WHERE url = 'http://www.people.com/people/article/0,,20624518,00.html'

(See result in Graph API Explorer.) You can also use WHERE url IN ("…", "…", …) to check multiple URLs at once.

This also returns a comments_fbid of 10151022112466453, and that one you can look up via the API, https://graph.facebook.com/10151022112466453

Maybe this can work as a workaround, until Facebook fixes this problem.

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.