0

How to get chat history using XMPP.

I am using the agsXMPP framework for C#.

How can I do this?

Mark
  • 5,437
  • 2
  • 19
  • 29

1 Answers1

0

The short answer is that you can't.

Both agsXMPP and its paid version MatriX XMPP do not support this functionality. The message archiving management is defined in the XEP-0136 XMPP extension.

According to some old threads here and here on the AG forum this extension is "huge and still on the todo list".

You can however add your own functionality to the SDK to manage this. It's quite straight forward.

Mark
  • 5,437
  • 2
  • 19
  • 29
  • XEP-0136 is implemented in MatriX for a while now, but not in agsXMPP. And as you said, for extensions which are not supported its very easy to write your own extensions either for agsXMPP or MatriX – Alex Oct 23 '15 at 10:09