whatsapp unofficial api
git clone https://github.com/theazran/whatsapp-api.git/
cd whatsapp-api
npm install
npm start
open browser localhost:9000
input your number whatsapp and scan qrcode
Note
only send text message.
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'http://localhost:9000/send',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"number": "6285xxxxxxx",
"to": "6285xxxxxx",
"type": "chat",
"message": "Hello, this is a test message!"
}
',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;