0
我使用Ionic Framework V1。 我已經得到使用 通過郵差推送通知和我已經保存所有devicetokens在我的數據庫,但我被困在獲得了PHP函數的特定設備的任何推動。如何發送推送到特定的設備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'));
}
}
離子IO使用承載鍵和profileapp 任何想法?