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'am using graph API in my application. Recently I have come up with a trouble retrieving places using Places API.

When I try to retrieve locations using places API I'm not getting response as expected, please let me know in case if I'm missing out some steps.

url used in app is:-

https://graph.facebook.com/search?q=Paris%2c%20France&type=place&center=48.8567,2.3508&limit=20&distance=100

What is the minimum value of the distance to be specified? As I'm able to get more places if I increase distance value from 100 to 1000

share|improve this question

1 Answer

Playing with the Graph API explorer, there doesnt seem any specific value that can be used as minimum value while querying. Since using specifying 1 I still seem to be able to fetch the results, as of now the maximum value that you can specify seems to be 50000m for place queries.

share|improve this answer
Thank you so much for answering my question – Meghana Dec 26 '12 at 6:52
You might want to accept the answer if you found it useful :) – Virendra Rajput Dec 26 '12 at 11:09
Actually problem is with limit parameter, it seems limit parameter does not return expected value.If i give limit value as 4 i'am able to get single location value(as response) but if i give limit value as 20,location value is being received as response is 17.As per my project requirements i need to restrict the location value based on limit parameter.Is this a Facebook bug? – Meghana Jan 2 at 6:18
well it does seem to be a facebook bug! – Virendra Rajput Jan 2 at 10:59

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.