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 am using the graph API to search result about a subjet on a multilingue web site. For example : Sarkozy.

So, i use this url : https://graph.facebook.com/search?q=Sarkozy.

Then, i want to have replies only in a certain language or country, for example English, Spainish, French.

Does someone know what is the request url to obtain this ? Thanks.

share|improve this question

3 Answers

Add &locale=en_US as a parameter for example to get only US English results. You may also try setting the Accept-Language http header.

share|improve this answer
It work, thanks. – yadam Aug 26 '11 at 9:21
Then mark the answer as accepted – BK. Aug 26 '11 at 14:27

The above mentioned &locale=en_US kind of parameter does not filter the search results any more (since early December 2012).

Originally listed as a bug this behaviour (not filtering by language) has now been declared to work as intended(!).

Unfortunately I’m not familiar with any workaround or other solution.

share|improve this answer

You can use Accept-Language header.

C# example

using (WebClient client = new WebClient())
{
    client.Headers.Add("Accept-Language", "en-US,en;q=0.8");
    result = client.DownloadString(searchUrl);
}
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.