我想使用PHP向特定用户发送推送通知。我知道很多次都会问这个问题。但我的问题没什么不同。在我的情况下发送推送通知,但是对于所有用户,即使我已指定将推送发送给特定用户,
为此,每当用户在他们的Android设备上安装应用程序时,我就会在Parse.com的安装表中保存一个唯一的ID。 这是android app中的代码:
Parse.initialize(this, "XXXX", "XXXX");
ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("device_id", Secure.getString(getContentResolver(), Secure.ANDROID_ID));
installation.saveInBackground();
这很好用。我可以在解析的安装表中看到id。
现在,这是我用来向特定设备ID发送推送通知的php脚本。它会向所有用户发送推送通知。
require_once('autoload.php');
use Parse\ParseInstallation;
use Parse\ParsePush;
use Parse\ParseClient;
ParseClient::initialize( 'XXXXXX', 'XXXXX', 'XXXXX' );
function sendPush($query){
$notification = "Test notification!";
$data = array("alert" => $notification);
ParsePush::send(array(
"where" => $query,
"data" => $data
));
}
$query = ParseInstallation::query();
$query->equalTo("device_id", "XXXXXX");
sendPush($query);
答案 0 :(得分:0)
在搜索了很多解决方案之后,我检查了他们的github问题页面和“已关闭的问题”。我找到了一个similar issue。解决方案是更新SDK。因为他们在ParsePush.php中犯了一个拼写错误。 因此,如果有人遇到此问题,请更新您的Parse PHP SDK。