FQL からのストリーム データを表示したい
fql?q=SELECT post_id, app_id, source_id, updated_time, created_time, filter_key,
attribution, actor_id, target_id, message, app_data, action_links,
attachment, impressions, comments, likes, place, privacy, permalink, xid,
tagged_ids, message_tags, description, description_tags, type
FROM stream WHERE filter_key in (
SELECT filter_key FROM stream_filter WHERE uid=me()
AND type='newsfeed')
しかし、問題は、そのテーブルにユーザー/ページの名前がなく、ID のみがあることです。
これらの結果にも名前を付ける方法はありますか? そして、actor_id だけでなく、コメントをした人の名前も。
マルチクエリを作成し、ストリーム内のすべての ID に対して検索してから、ユーザー テーブルとページ テーブルからフェッチする必要がありますか。そして、それらの結果を単一のストリーム結果ごとにループしますが、ちょっと重いようです。もっと簡単な方法はありますか?