我正在将此SDK用于Parse.com https://github.com/ParsePlatform/parse-php-sdk 使用
发送推送通知时,这对我不起作用$query= ParseInstallation::query();
$query->where('deviceType', 'ios');
parsePush::send(array(
"where" => $query,
"data" => array(
"alert" => "Hello Hello !"
)
));
获取此信息:致命错误:在
中调用未定义的方法ParseInstallation :: query()答案 0 :(得分:3)
我正在使用它来发送推送通知,它完美无缺。确保您在仪表板中设置了从客户端发送推送通知的功能。
$notification = "Your notification!";
$query = ParseInstallation::query();
$query->equalTo("deviceType", "ios");
$data = array("alert" => $notification);
ParsePush::send(array(
"where" => $query,
"data" => $data
));