waapi/waapi-php-sdk
最新稳定版本:v1.0.1
Composer 安装命令:
composer require waapi/waapi-php-sdk
包简介
The official EAZE WhatsApp PHP SDK
关键字:
README 文档
README
Introduction
PHP package to easily interact with waapi.app.
Installation
Composer
composer require waapi/waapi-php-sdk
Usage
Initial Setup
use WaAPI\WaAPISdk\WaAPISdk; $apiToken = 'xxxxxxxxxxxxxxxxxxxxxx'; $sdk = new WaAPISdk($apiToken);
Check if WhatsApp API is available
$isAvailable = $sdk->isApiAvailable();
Create a new instance
$instance = $sdk->createInstance(); $instanceId = $instance->id;
Get an existing instance
$instanceId = 10; //you need to know your instance id at this point $instance = $sdk->getInstance($instanceId);
Update an existing instance
$instanceId = 10; //you need to know your instance id at this point //if a subscribed event occurs, this url will be requested with the event data //can also be null if you do not want to receive webhooks $webhookUrl = ''; $subscribedEvents = ['', '']; //can also be null or an empty array $sdk->updateInstance($instanceId, $webhookUrl, $subscribedEvents); //if you have an instance object, you can also use the following method $instance = $sdk->getInstance($instanceId); $instance->update($webhookUrl, $subscribedEvents);
Delete an existing instance
$instanceId = 10; //you need to know your instance id at this point $sdk->deleteInstance($instanceId); //if you have an instance object, you can also use the following method to delete this instance $instance = $sdk->getInstance($instanceId); $instance->delete();
Get the QR-Code
After creating a new instance, you need to connect your WhatsApp phone number with this instance. With the following code, you are able to receive the current QR-Code.
$instanceId = 10; //you need to know your instance id at this point $response = $sdk->getInstanceClientQrCode($instanceId); //if you have an instance object, you can also use the following method to delete this instance $instance = $sdk->getInstance($instanceId); $response = $instance->clientQrCode(); // The QR code as a base64 image string (data:image/png;base64,…). // Set this string in the src attribute of a <img src=““> html tag. $qrCode = $response->qrCode;
Get the instance status
An instance always has a status.
| Status | Description |
|---|---|
| booting | The node is starting the instance. The status will change to loading_screen soon. |
| loading_screen | The instance is starting WhatsApp Web. The status will change to qr or ready soon. |
| qr | The instance needs to be connected with a WhatsApp phone number. You can fetch the QR code now. |
| authenticated | The connection via the QR code was successful. The status will change to ready soon. |
| auth_failure | The connection via the QR code failed or WhatsApp Web is down. |
| ready | The instance is ready to use. You are able to execute actions and send messages. |
| disconnected | Disconnected from WhatsApp Web |
$instanceId = 10; //you need to know your instance id at this point $response = $sdk->getInstanceClientStatus($instanceId); //if you have an instance object, you can also use the following method to delete this instance $instance = $sdk->getInstance($instanceId); $response = $instance->clientStatus(); $instanceStatus = $response->instanceStatus;
Get information about an existing instance
$instanceId = 10; //you need to know your instance id at this point $response = $sdk->getInstanceClientInfo($instanceId); //if you have an instance object, you can also use the following method to delete this instance $instance = $sdk->getInstance($instanceId); $response = $instance->clientInfo(); //your public name of your WhatsApp profile (your name) $displayName = $response->displayName; //the connected WhatsApp phone number (your phone number) $phoneNumber = $response->formattedNumber; //profile image url of the connected WhatsApp phone number (your profile picture) $profileUrl = $response->profilePicUrl; //a unique identifier for your WhatsApp account / profile / phone number $whatsAppId = $response->contactId;
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 8.73k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-08-21