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,