juanalessandrini/apiwapp_conector

Script php to connect apiwapp.com.ar services

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/juanalessandrini/apiwapp_conector

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

This package is auto-updated.

Last update: 2025-10-09 15:54:16 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);