我有 PHP 服务器和 MySQL 数据库。我还将令牌存储在数据库中。发送通知的 PHP 代码如下。我使用世博会 V38.0.0
function send_notification($token,$msg,$title,$data) {
try {
if($token !== NULL) {
json_encode(expo_push($token, $title, $msg, $data));
}
return TRUE;
} catch (Exception $e) {
return FALSE;
}
}