0

I want to use my django website with ejabberd for chat

is there API available for ejabberd to communicate?

Thanks in advance renjith

Renjith
  • 546
  • 1
  • 8
  • 28
  • possible duplicate of [Is there an ejabberd python library?](http://stackoverflow.com/questions/5141462/is-there-an-ejabberd-python-library) – alecxe May 26 '14 at 17:25
  • That question is about an XMPP client for Python. When you're communicating over HTTP, you first need to handle the different protocol, so I think this is a different question. – Nathaniel Waisbrot May 27 '14 at 10:52

1 Answers1

0

The standard for using XMPP with a webpage is called XMPP over BOSH. You can enable BOSH in ejabberd and then use an XMPP client library (like SleekXMPP) to talk.

Try searching using some mixture of the keywords "Jabber", "XMPP", or "BOSH", and I think you'll find a number of other people connecting Django with a Jabber server.

Nathaniel Waisbrot
  • 23,261
  • 7
  • 71
  • 99