09-02-2021 01:05 AM
I wanted to take a peek into Jabber Bots but am struggling to follow this guide.
What i dont understand is "Add Jabber chatBot configuration for XMPP connector" - what is an XMPP connector? Is it a service that is configured on the IM&P? A standalone service that i have to install and launch? A part of the botkit? The closest thing i can thing of on IM&P is the XMPP Federations, but i dont think this has anything to do with Jabber Bots. So what exactly do i do here?
Solved! Go to Solution.
09-02-2021 06:37 AM
The phrasing is awkward. It's simply referring to this:
A Cisco Jabber Bot SDK bot uses XMPP to connect to Cisco Unified IM & Presence server, and supports only password authentication (an interactive SSO/Auth login sequence is not applicable for a server-side application.
And, in the doc example, here's where it connects:
var bot = controller.spawn({ client: { jid: 'jabberbot@mydomain.com', password: 'secret', host: "cuimp-host.mydomain.com", port: 5222 } });
09-02-2021 06:37 AM
The phrasing is awkward. It's simply referring to this:
A Cisco Jabber Bot SDK bot uses XMPP to connect to Cisco Unified IM & Presence server, and supports only password authentication (an interactive SSO/Auth login sequence is not applicable for a server-side application.
And, in the doc example, here's where it connects:
var bot = controller.spawn({ client: { jid: 'jabberbot@mydomain.com', password: 'secret', host: "cuimp-host.mydomain.com", port: 5222 } });
09-02-2021 10:59 PM
Thanks, that makes sense - it also seems that it only works with the legacy version of botkit and that the newest version doesnt support jabber anymore (https://github.com/howdyai/botkit/issues/1864)
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide