I'm currently developing an Android app that uses Facebook graph API to get pages/places based on user's location. I also want to filter the results by category, like restaurants for example. For now I'm just searching for the name "restaurant" like this: https://graph.facebook.com/search?q=restaurant&type=place¢er=37.76,-122.427&distance=1000
The problem is that it wont find pages/places that don't have name "restaurant" and it also returns places that don“t have anything to do with restaurants. I also have the language issue, in non-English countries my search will fail completely.
A possible solution I am considering is to get all the places in a range and parse them in my app for the category or name. Obviously this brings a lot of overhead to my app.
I was wondering if there is a better solution like using FQL to get filtered results?