I use Facebook C# SDK. I try to make a Facebook search request to retrieve locations without success.
I don't know all the parameters which can be used in a "search" request.
I use this code:
Dictionary<string,object> searchParams = new Dictionary<string,object>();
searchParams.Add("q", "Orange");
searchParams.Add("type", "place");
searchParams.Add("country", "France");
FacebookClient fbClient = new FacebookClient(token);
var searchedPlaces = fbClient.Get("/search", searchParams);
I receive a response with some places everywhere in the world not only in France!! The filters "category" and "country" have no effect.
Which parameters can be used in the request ? Where find the parameters list for a search request?
How to fix parameters "category", "country" and what write in the parameter "q"?