要使用PHP发送APNS通知,您需要遵循以下步骤:
获取Apple推送通知服务(APNS)证书:
安装PHP库:
composer require php-apns
创建一个PHP文件(例如send_push_notification.php)并编写以下代码:
<?php
require_once 'vendor/autoload.php';
use ApnsPHP\PushNotification;
// 配置APNS证书和推送通知服务
$certificateFile = '/path/to/your-certificate.pem';
$push = new PushNotification($certificateFile, 'apns-sandbox.apple.com'); // 使用沙箱环境进行测试
// 设置连接超时和读取超时(可选)
$push->setConnectTimeout(10);
$push->setReadTimeout(10);
// 设置应用ID和推送通知的详细信息
$appId = 'YOUR_APP_ID';
$deviceToken = 'DEVICE_TOKEN_HERE';
$messageTitle = 'Hello';
$messageBody = 'This is a test push notification.';
// 创建通知对象
$notification = new ApnsPHP\Notification();
$notification->setApplication($appId);
$notification->setDeviceToken($deviceToken);
$notification->setTitle($messageTitle);
$notification->setMessage($messageBody);
$notification->setCustomProperty('custom_key', 'custom_value'); // 可选的自定义属性
// 发送通知
try {
$result = $push->sendNotification($notification);
if ($result[0] === ApnsPHP\Constants::RETURN_CODE_OK) {
echo 'Push notification sent successfully.';
} else {
echo 'Error sending push notification: ' . $result[1];
}
} catch (Exception $e) {
echo 'Error sending push notification: ' . $e->getMessage();
}
?>
更新代码中的以下变量:
/path/to/your-certificate.pem
替换为您的实际证书文件路径。YOUR_APP_ID
替换为您的应用程序ID。DEVICE_TOKEN_HERE
替换为目标设备的实际设备令牌。运行PHP脚本:
php send_push_notification.php
注意:在将应用程序发布到App Store之前,请确保将APNS证书配置为生产环境(即使用apns.apple.com
而不是apns-sandbox.apple.com
)。