gpt4 book ai didi

android - 将带有解析的推送发送到特定设备?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:22 25 4
gpt4 key购买 nike

我刚刚完成了这个(非常好的)教程:https://parse.com/tutorials/ios-push-notifications只剩下一个问题了。我可以在我的应用程序中仅将推送消息发送到一个特定的设备(可能使用 device token 吗?)而不是每个设备?我现在不一定需要知道怎么做,一个简单的“是的,这可以通过解析实现”或“不,你不能为此使用解析”就足够了!

干杯

最佳答案

您可以在 ParseInstallation 中保存设备 ID,然后将此安装作为目标:

接收方:

ParseInstallation installation = ParseInstallation.getCurrentInstallation();
installation.put("device_id", "1234567890");
installation.saveInBackground();

发件人:

ParseQuery query = ParseInstallation.getQuery(); 
query.whereEqualTo("device_id", "1234567890");
ParsePush push = new ParsePush();
push.setQuery(query);
push.sendPushInBackground();

关于android - 将带有解析的推送发送到特定设备?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22493871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com