views:

31

answers:

0

I'm using facebook connect to let users login my application easy. It works well, but, after users allow me to get their facebook info as email, birthday, gender and so on, facebook gives me back these data in user's specific locale.

So, if a user has facebook in english i'll get {"gender" : "male"}, and if a user has facebook in italian, for example, i'll get {"gender" : "uomo"}. Facebook translates the value using user's locale. The problem is that i have to use these user info to make some search on my app, and it's impossible to me to say, for example, "select all 'male' users".

Is there a way to make facebook return user's info in a specific locale? So I will be able to know how to use these data, not only displaying those.

Thanks