cachesistemas / chatbot-gpt-whatsapp
There is no license information available for the latest version (v1.0.0) of this package.
ChatBot para WhatsApp usando IA GPT
v1.0.0
2023-01-20 12:05 UTC
Requires
This package is auto-updated.
Last update: 2025-03-20 17:04:15 UTC
README
CONTATO
Example of use:
Installing composer
composer require cachesistemas/chatbot-gpt-whatsapp
Connecting with Whatsapp
use Cachesistemas\ClassePhpApiWame\WhatsApp; include_once 'vendor/autoload.php'; $whatsapp = new WhatsApp(["server" => "API server", "key" => "Your Key Instance"]); echo $whatsapp->getQrCodeHTML();
Updating webhook
$body = ["allowWebhook" => true, "webhookMessage" => "your-url.com/webhook.php", "webhookGroup" => "", "webhookConnection" => "", "webhookQrCode" => ""]; $whatsapp->updateWebhook($body);
your-url.com/webhook.php
use Cachesistemas\ChatbotGptWhatsapp\Bot; include 'vendor/autoload.php'; new Bot(["wpp_server" => "", "wpp_key" => "", "open_key" => " "]);