如何在 php 函数上将推送发送到特定的设备令牌

How to send push to specific devicetoken on php function

我正在使用 Ionic Framework V1。 我已经使用 Postman 收到推送通知 并且我已经将所有 devicetokens 保存在我的数据库中,但我仍然无法在 php 函数中获取对特定设备的任何推送。

curl -X POST -H "Authorization: Bearer API_TOKEN" -H "Content-Type: application/json" -d '{
"tokens": ["DEV_DEVICE_TOKEN"],
"profile": "PROFILE_NAME",
"notification": {
    "message": "This is my demo push!"
}

示例:

public function confirmAction($request){
    $action = $this->find($request->idtblAction);
    $action->idtblStatus=1;
    if($action->save()){
   //I need to send notification in this part
        return Response::json(array('success'=>'true'));
    }else{
        return Response::json(array('success'=>'false'));
    }
}

Ionic io 使用 Bearer key 和 profileapp 有什么想法吗?

我已经在不使用 php 的情况下解决了这个问题。我通过我的内部离子应用程序代码做到了。 谢谢大家!