vrann / magebot
Magento Facebook Bot which implements a Chat Bot for the Magento store on Facebook Messenger
Installs: 11
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 6
Forks: 2
Open Issues: 2
Type:magento2-module
Requires
- php: ~5.6.0|7.0.2|7.0.4|~7.0.6
- magento/module-amqp: 100.2.*
- vrann/fbchatbot: dev-master
This package is not auto-updated.
Last update: 2024-10-26 19:53:53 UTC
README
Vrann Magebot is an extension which implements simple Chat Bot for Facebook Messenger backed by Magento.
It configures Magento to read messages from the RabbitMQ with the text from Facebook Messenger. Messages should be written to RabbitMQ by https://github.com/vrann/http-rabbitmq-writer installed on public web endpoint and registered for webhook in Facebook.
While processing message, Magebot invokes handler which generates response to the message and writes it to the RabbitMQ. https://github.com/vrann/http-rabbitmq-writer will read messages from the RabbitMQ and send them to the Facebook.
Presentation
http://www.slideshare.net/vrann/mage-titans-usa-2016-magentofacebookrabbitmq
Installation
- Install https://github.com/vrann/http-rabbitmq-writer on public endpoint. Install RabbitMQ. Register callback.php to listen messages from the Facebook Messenger. Start response.php in daemon mode, to send responses back to the Facebook.
- Install magebot extension on Magento:
composer require vrann/magechatbot
- Start RabbitMQ consumer on Magento which will listen the queue with the messages from Facebook
bin/magento queue:consumers:start basic.consumer
Testing
Invoke vrann/magebot API through the Web API:
curl -XPOST -H "Content-Type: application/json" -d '{
"messageText": {
"object": "page",
"entry": [
{
"id": "287630798278680",
"time": 1471371304751,
"messaging": [
{
"sender": {
"id":"1011665925607547"
},
"recipient": {
"id":"287630798278680"
},
"timestamp":1471371209420,
"message": {
"mid": "mid.1471371209330:af0fa0dd167d847914",
"seq": 12,
"text": "Hi!"
}
}
]
}
]
}
}' http://{magento.url}/rest/V1/facebook-bot-message