Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get messages from specific user?

If I would like to get all messages where recipients are myself and x

I didn't find a way to create that kind of query, so is it possible?

share|improve this question
So is it possible to get that thread somehow? – Juuso Kosonen Feb 12 '12 at 11:49

2 Answers

I didn't find a way to create that kind of query, so is it possible?

Yes, see the FQL stream table. http://developers.facebook.com/docs/reference/fql/stream/

There's examples of how to query that table in the link.

share|improve this answer
I'm talking about messaging section, not the stream. – Juuso Kosonen Feb 13 '12 at 13:54
Check out the developers.facebook.com/docs/reference/fql/thread FQL table. This is the "inbox". – DMCS Feb 13 '12 at 14:01
Yes, I have been checking that out, but I don't find a way to get thread from spesific user, that's why I'm asking. – Juuso Kosonen Feb 13 '12 at 17:28
What did you try? – DMCS Feb 13 '12 at 18:40
No, this didn't answer my question. Since the new messaging tables aren't publicly available this is impossible. – Juuso Kosonen Apr 20 '12 at 19:01
show 2 more comments
var fbid = your_fbuid_here;          
        FB.api({
                    method: 'fql.query',
                    query: 'SELECT thread_id, author_id, created_time FROM message WHERE thread_id IN (SELECT thread_id FROM thread WHERE folder_id = 0) AND author_id = ' + fbid + ' ORDER BY created_time ASC LIMIT 1'
                }, function ( threadresponse ) {
                    FB.api({
                        method: 'fql.query',
                        query: 'SELECT thread_id, body, author_id, created_time FROM message WHERE thread_id = ' + threadresponse[0].thread_id + ' ORDER BY created_time ASC'
                    }, function ( inboxresponse ) {
                            //do stuff here with results
                    });
                });

or you can do this

 var fbid =the _freind_fb_uid_here;          
            FB.api({
                        method: 'fql.query',
                        query: 'SELECT thread_id, body, author_id, created_time FROM message WHERE thread_id IN (SELECT thread_id FROM thread WHERE folder_id = 0) AND author_id = ' + fbid + ' ORDER BY created_time DESC'
                    }, function ( threadresponse ) {
                                //do stuff here with results
                    }); 

share|improve this answer
Hmm, this returns my first thread, that's not what I'm looking for. – Juuso Kosonen Feb 18 '12 at 16:24
your_fbuid is the one of the person you want to match the messages. The first query is to get the thread_id from the thread fql, the second fql is to get all the messages. – Damien Keitel Feb 19 '12 at 23:32
well I can also be the author in the messaging thread, so this doesn't work. – Juuso Kosonen Apr 20 '12 at 19:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.