Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gemblue/woowa

Simple Woowa Wrapper API. Woowa is popular platform to send Whatsapp message.
https://github.com/gemblue/woowa

Last synced: about 2 months ago
JSON representation

Simple Woowa Wrapper API. Woowa is popular platform to send Whatsapp message.

Awesome Lists containing this project

README

        

# Woowa

Simple Woowa Wrapper API. Woowa is popular platform to send Whatsapp message ☎️
https://woo-wa.com/

### How to use

Download the package with composer

```
composer require gemblue/woowa
```

Then, consume the library and send message

```
setup([
'sender' => '{senderphonenumber}',
'domain' => '{domain}',
'license' => '{license}',
'ip' => 'http://116.203.92.59',
'key' => '{key}'
]);

$send = $Woowa->sendMessage('+62777777', 'Pesan ini adalah pesan percobaan dari library gemblue/woowa');

if ($send) {
echo 'Pesan terkirim';
}
```