PHP code example of logicalcrow / laravel-whatsapp-api
1. Go to this page and download the library: Download logicalcrow/laravel-whatsapp-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
logicalcrow / laravel-whatsapp-api example snippets
use Logicalcrow\Whatsapp\Messages;
Whatsapp::send('13333333333', Messages\TemplateMessage::create()
->name('one_time_password')
->language('en_US')
->body(Messages\Components\Body::create([
Messages\Components\Parameters\Text::create('000000'),
])));
use Logicalcrow\Whatsapp\Messages\TextMessage;
Whatsapp::send('13333333333', TextMessage::create('Answer to your message')->respondTo('wamid.91n23...'));
class User extends Authenticatable
{
use Notifiable;
/**
* @return string|array
*/
public function routeNotificationForWhatsapp(): string|array
{
return "{$this->phone_code}{$this->phone}";
}
}
//...
use Logicalcrow\Whatsapp\Messages\TemplateMessage;
use Logicalcrow\Whatsapp\Messages\Components\Parameters;
use Logicalcrow\Whatsapp\WhatsappChannel;
class VerificationCode extends Notification
{
use Queueable;
/**
* Create a new notification instance.
*
* @return void
*/
public function __construct(protected string $code)
{
//
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public function via($notifiable)
{
return [WhatsappChannel::class];
}
/**
* Get the message representation of the notification.
*
* @param mixed $notifiable
* @return \Logicalcrow\Whatsapp\Messages\WhatsappMessage
*/
public function toWhatsapp($notifiable)
{
return TemplateMessage::create('one_time_password')
->language('en_US')
->body([
Parameters\Text::create('123456'),
]);
}
}
$user->notify(new VerificationCode('12345678'));
return [
/**
* The whatsapp token to be used.
*/
'token' => env('WHATSAPP_TOKEN'),
/**
* The whatsapp's app secret code. Required for webhook request signature verification.
*/
'secret' => env('WHATSAPP_SECRET'),
/**
* The default NUMBER ID used to send the messages.
*/
'default_number_id' => env('WHATSAPP_NUMBER_ID'),
/**
* If you want to use other number id's you can add them here so you can call
* `numberName` with the name you provide here and make it easier to change
* the phone where the messages are sended.
*/
'numbers' => [
// 'fallback' => env('WHATSAPP_FALLBACK_NUMBER_ID'),
],
'webhook' => [
/**
* Wether to enable the webhook routes
*/
'enabled' => env('WHATSAPP_WEBHOOK_ENABLED', true),
/**
* The webhook path, by default "/whatsapp/webhook"
*/
'path' => env('WHATSAPP_WEBHOOK_PATH', 'whatsapp'),
/**
* The webhook verification token.
* For more information check https://developers.facebook.com/docs/graph-api/webhooks/getting-started#verification-requests
*/
'verify_token' => env('WHATSAPP_WEBHOOK_VERIFY_TOKEN'),
/**
* Wether the webhook request signature should be verified or not.
*/
'verify_signature' => env('WHATSAPP_WEBHOOK_SIGNATURE_VERIFY', false),
],
];