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.

How to get locations nearest to 1000 distance of user using Facebook Graph Api for Php? I am getting this link of graph api https://graph.facebook.com/search?q=coffee&type=place&center=37.76,-122.427&distance=1000 but not understand how to implement. Thanks in advance for helping.

share|improve this question

2 Answers

$search_result = $facebook->api('/search?q=coffee&type=place&center=37.76,-122.427&distance=1000');

You will get result in $search_result.

share|improve this answer
up vote 0 down vote accepted

Using file_get_contents fetch the locations from graph api.

file_get_contents("https://graph.facebook.com/search?q=store&type=place&center=37.76,-122.427&distance=1000&access_token=YOUR_ACCESS_TOKEN");
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.