We're in the process of integrating Facebook chat (via XMPP/bosh) with our own web-based platform. This is working. What we do now want to do is get a message history for that user - even if it's just the last 20 messages or so.
Using the /inbox/ Graph function this is possible. However we would like to be able to just get the message history for the user they have opened a chat with. So is it possible to somehow specify the other person as a URL graph parameter, or are we limited to all users and pagination (ie the user they're talking to may be on page 3 of their history?
If not possible we may have to fallback to trying to work with FQL for this?
Thanks in advance, Mark
UPDATE: Created a workaround with FQL but less than ideal. Involves getting a list of threads; search for one with both parties; query message table against that thread id. Doesn't seem an ideal solution though.