我需要将推送消息从我的网络服务发送到Windows手机。我能够从控制台实现这一点,但我需要使用php脚本
来实现我试过的代码:
fscode
但是在转储响应时我得到一个布尔值:false并且手机上没有通知。
答案 0 :(得分:0)
试试这个:
$push_payload = json_encode(array(
"where" => array("deviceType" => "winrt"),
"data" => array("alert" => "This is the alert text.")
));