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 would like to how to get the friendlist in French ? I'm connected from France, with a french facebook account, and I receive the friendlist in english using this line :

$this->load->library('facebook', $fbparams);

//Récupération des listes d'amis
$friends = $this->facebook->api(array(
    'method'=>'fql.query',
    'query'=>'SELECT flid, owner, name FROM friendlist WHERE owner=me()'
));

Thanks,

share|improve this question
1  
What do you mean "in french"? It's a list of names, it does not matter what language it is. – OptimusCrime May 18 '12 at 7:33
There are default list of facebook : Close friends, Family... and I get this list in english instead of french (Amis proches, Famille...) – tilix May 18 '12 at 7:41
I think you've misunderstood how Facebook stores this. You are connecting to the database and getting pure information from it. I don't think the database has stored the lists in different languages. When you go to facebook.com it loads from the database, if you use another language, the translation kicks in and overwrites the english names. – OptimusCrime May 18 '12 at 7:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.