gpt4 book ai didi

android - 将带有解析的推送通知发送到单个设备

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

我可以在我的 Android 应用程序中将推送消息仅发送到一个特定的设备(可能带有设备 ID 吗?)而不是发送到所有设备?
一个简单的“是的,这可以用解析”或“不,你不能为此使用解析”就足够了!如果 ans 是,那么我需要知道如何......

最佳答案

您可以在 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/22533406/

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