Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/gemblue/woowa
- Owner: gemblue
- Created: 2020-08-30T11:17:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-30T13:25:35.000Z (over 4 years ago)
- Last Synced: 2024-05-14T05:44:13.481Z (8 months ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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';
}
```