私はすべてのFacebookの友達のリストを取得するプログラムを作成しました..
今、私は自分のモジュールをユーザー向けにカスタマイズし、ユーザーが自分のフレンドリストを月ごとに表示できるようにしたいと考えています
質問:
How to sort Facebook Friends List those birthdays in Current Month or Week only...
すべての友達のリストを取得するコード:
public static void requestFriends(FacebookRequest facebookRequest) {
Log.d(LOG_TAG, "requestFriends(" + ")");
String query = "select name, birthday, uid, pic_square from user where uid in (select uid2 from friend where uid1=me()) order by birthday_date";
Bundle params = new Bundle();
params.putString("method", "fql.query");
params.putString("query", query);
FacebookUtility.asyncRunner.request(null, params,
new FacebookRequestListener(FacebookRequestListener.FRIENDS, facebookRequest));
}
1 月に誕生日を迎える友人のリストを取得するコード:
String query = "select name, birthday, uid, pic_square from user where uid in (select uid2 from friend where uid1=me())AND birthday_date >= '01/01' AND birthday_date <= '01/31' ORDER BY birthday_date ASC";