0
我取使用考拉寶石我的朋友一樣,Rails框架:如何訂購使用考拉寶石的朋友?
@friends = current_user.facebook.get_connections("me", "friends?fields=id,name,picture.type(small)")
的問題是:我該如何獲取我的朋友按名稱排序,例如?
我取使用考拉寶石我的朋友一樣,Rails框架:如何訂購使用考拉寶石的朋友?
@friends = current_user.facebook.get_connections("me", "friends?fields=id,name,picture.type(small)")
的問題是:我該如何獲取我的朋友按名稱排序,例如?
使用FQL或在Ruby中後處理它。
所以對於FQL在考拉,像
current_user.facebook.fql_query(my_fql_query)
哪裏my_fql_query是
SELECT uid, name, pic_small FROM user WHERE uid in (SELECT uid2 FROM friend WHERE uid1=me()) ORDER BY name