-
페이스북(facebook) api FQL 에서 채팅내용(chatting list) 가져오기Dev/Facebook 2013. 3. 22. 14:27
FQL Query 에서 아래와 같이 작성하면 채팅 내용을 가져올 수 있다.
select attachment, author_id, body, created_time, message_id, source, thread_id, viewer_id from message where thread_id IN (select thread_id from thread where folder_id = 0) and (author_id = me() or author_id != me()) order by created_time desc
주의할 점은 read_mailbox 권한이 있어야 한다.