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 doing the following query in the FB-FQL:

SELECT id, tagged_uids, type, coords FROM location_post WHERE distance(latitude, longitude, '37.785834', '-122.406417') < 1000 AND app_id=364316083653078 LIMIT 0, 100

This returns a result with two entries.

But when I increase the distance, I get less results??? (only 1)

SELECT id, tagged_uids, type, coords FROM location_post WHERE distance(latitude, longitude, '37.785834', '-122.406417') < 10000 AND app_id=364316083653078 LIMIT 0, 100

As I understand it, the first query should give me the posts within a range of 1000 meters and the second one within 10'000 meters. So I should get MORE results with the second query?

Any ideas?

share|improve this question
Are you sure to follow all the paging urls returned by the query? – Donn Lee Oct 28 '12 at 23:57
I have similar problem!! I actually get no entry when I include distance data~ I even changed distance from 10, 100, 1000, 10000, 100000 many times but it doesn't work. Also the location_post doesn't give me any paging url....hahahaha... – Leonardo Apr 24 at 6:43
@Donn - thanks - I'll check that... – Swissdude Apr 27 at 11:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.