juanalessandrini/apiwapp_conector

Script php to connect apiwapp.com.ar services

v1.0.1 2023-05-09 10:23 UTC

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

  1. Add library reference
  2. composer install juanalessandrini/apiwapp_conector
  3. Goto ApiWapp.com.ar and get the API token.
  4. Replace token on .env file
  5.     // vendor/juanalessandrini/apiwapp_conector/.env
        APIWAPP_TOKEN=yourToken
  6. Add library reference
  7. use Juanalessandrini\Apiwapp\Conector\ApiWappConector;
  8. Create class instance:
  9.     $whatsapp = new ApiWappConector(EntityManagerInterface,HttpClientInterface);
  10. Call to method to send message:
  11.     $whatsapp->sendMessage($template_uid, $params, $target);