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 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"?

share|improve this question

1 Answer

From the Documentation:

The example search for places is given as https://graph.facebook.com/search?q=coffee&type=place&center=37.76,122.427&distance=1000 - you'll need an access token but otherwise that works fine for me; the response shows Coffee shops centered around those coordinates

{edit} The only search options are

  1. q for a text based query
  2. center (with coordinates) and distance to specify the approximate location
  3. Both of the above
share|improve this answer
this response does not answer my questions. It lists only the contents of the documentation. – Christian Ucs Feb 17 '12 at 8:01
I thought you were asking about the filters 'category' and 'country' which as far as I know don't exist - I'll see if i can find a complete list – Igy Feb 17 '12 at 9:17
edited - the example in the documentation lists all possible search options for places – Igy Feb 17 '12 at 9:22
Did this answer solve, or help you to solve the problem in your question? if so, please accept accept this answer or add your own answer with the solution you found. See these instructions for info how to accept answers; thanks! – Igy Jun 26 '12 at 14:57

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.