Durum:
benim facebook uygulaması (http://apps.facebook.com/mymagicmirror/) kullanıcının cinsiyetini tespit ve sonra karşı cinsle ya da erkek ya da kadın sorgulamak için gereken
FQL:
SELECT uid, name, pic, sex FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1='.$user_id.') and sex='male'
Problem: When the facebook user is using other locale, then the 'sex' field doesn't match 'male' and 'female' anymore. Instead, say in Chinese, the sex will become 男性 / 女性, and the FQL for where sex='male' will return zero results.
Facebook kullanıcı İngilizce dışındaki yerel sahip olsa bile tüm kadın / erkek arkadaş sorgulamak için herhangi bir çözüm?