Reputation: 99
I built from scratch a Chatbot in java with swing. I have my own NLP engine and home-made dialogue manager.
My question is now : how could I integrate it in a website chatting app like messenger or slack ?
Thanks
Upvotes: 1
Views: 288
Reputation: 705
You should have a knowledge on general Enterprise Integration Patterns.
This can be done in several ways. First thing you have to do is understand how Skype, Messanger or whatever are exposing their API in order to allow you to integrate with your service. Usually those products have "guide for developer".
Integrating with third party service is usually done by REST APis, webhook or AMQP protocols. There is no one way of doing that, but there are standards way.
There is a book which I can suggest which is actually called Enterprise Integration Patterns.
Upvotes: 1