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've tried to fetch results using Graph search API and I've notice that the results when executed in my computer (Argentina) are different from the results when I run it in a server (France).

Is this like this? How can I force a location for a search?

share|improve this question
I also met this problem. start a bounty. Thanks. – yuli chika Jun 16 '11 at 8:45

2 Answers

Thanks @Sascha Galley. I also find another easy way.

Just add &locale=en_US in Facebook Graph search API query URL.

This is languages and locales list refrence

share|improve this answer

I don't know exactly which results are different and which skd version you are using, but one possible approach is to send the accept-language header with the cURL request. In the facebook api php file add the following line in the function makeRequest() below $opts = self::$CURL_OPTS;

$opts[CURLOPT_HTTPHEADER] = array('Accept-Language: en-us,en;');

This post is almost two years old: Get Facebook Graph API results in English

Actually, this issue should have already been solved: Return values from the graph-api depend on geographic server location

share|improve this answer
As u'r the first and right answer, give u the bounty. Thanks. – yuli chika Jun 18 '11 at 11:37

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.