juanalessandrini / apiwapp_conector
Script php to connect apiwapp.com.ar services
v1.0.1
2023-05-09 10:23 UTC
Requires
- doctrine/orm: ^2.14
- symfony/framework-bundle: 5.2.*
- symfony/http-client: 5.2.*
Requires (Dev)
- symfony/maker-bundle: ^1.43
This package is auto-updated.
Last update: 2025-07-09 15:24:42 UTC
README
Script php to connect apiwapp.com.ar services
Follow the instructions
- Add library reference
- Goto ApiWapp.com.ar and get the API token.
- Replace token on .env file
- Add library reference
- Create class instance:
- Call to method to send message:
composer install juanalessandrini/apiwapp_conector
// vendor/juanalessandrini/apiwapp_conector/.env APIWAPP_TOKEN=yourToken
use Juanalessandrini\Apiwapp\Conector\ApiWappConector;
$whatsapp = new ApiWappConector(EntityManagerInterface,HttpClientInterface);
$whatsapp->sendMessage($template_uid, $params, $target);