botman / botman

A framework agnostic PHP library to build chat bots
https://botman.io
MIT License
6.07k stars 811 forks source link

TODO: Improve documentation #1170

Closed feralheart closed 2 years ago

feralheart commented 4 years ago

In this issue I will collect everything what should be included into the documentation.

If you have suggestions send a comment to this issue.

sherpaxit commented 4 years ago

Please, How to set up a new driver! 🙏🙏🙏🙏🙏

MmKargar commented 4 years ago

telegram buttons documentation.

goppi0 commented 4 years ago

Integration into existing Laravel apps. This existed in V1.5 and somehow dropped out in v2.

cykonetic commented 3 years ago

I've done some pretty deep dives into botman/botman, specifically integrating into Laravel 5.8. My org is preparing to migrate towards Laravel 7.x and possibly 8.0. At the very least I wouldn't mind contributing to the knowledge-base. As far as what needs documentation, the differences between Botman::fallback and Question::fallback Botman::says and Conversation::says I get lost among the trees while looking for the forest

jlmasson commented 3 years ago

Please, How to set up a new driver! 🙏🙏🙏🙏🙏

This is so useful. I think it's not clearly explained

stsmuniz commented 3 years ago

Using webdriver out of the widget

PLEASE!!!

AvneetSingh27 commented 3 years ago

Please, How to set up a new driver! 🙏🙏🙏🙏🙏

Did you managed to write your own custom driver?? @sherpaxit My goal is to transfer the chatbot conversation to real agent(live conversation). So I thought of writing my own driver but I am unable to. Please help @mpociot @christophrumpel

carrigan223 commented 3 years ago

@stsmuniz if you structure the axios post as such { "driver": "web", "userId": "lxbpp0", "message": "this is the message to send", "attachment": null, "interactive": "0" }

i have been able to get the response from insomnia/postman i am looking for, I haven't spent the time to build and try yet. I imagine though if your post request is structured that way you should be able get a response to build out a custom interface. Hope it helps some.