gpt4 book ai didi

android - FCM 通知 - 多个设备

转载 作者:行者123 更新时间:2023-11-29 23:19:20 25 4
gpt4 key购买 nike

我正在尝试为用户拥有多个设备的情况创建一个设备组。我用设备 token 制作了一张 map 。现在我想知道是否可以使用云函数来生成设备组 token :

enter image description here

然后,监听用户“app_list” map 上的变化并在 Cloud Functions 上运行类似的东西:

exports.appListAlterado = functions.firestore.document(`usuarios/{idUsuario}`).onUpdate(async (change: any, context: any) => {

const newValue = change.after.data().app_list;
console.log("newValue", newValue);
const regist_ids = [];

for (const idToken of Object.keys(newValue)) {
const appToken = newValue[idToken];
console.log("idToken", idToken);
console.log("appToken", appToken);
regist_ids.push(appToken);
}

console.log("length", regist_ids.length);
console.log("regist_ids", regist_ids);

});

我尝试直接从 Android 应用程序生成设备组 token ,但在我的测试中,我每次都生成不同的 notification_key(也许我做错了什么)。

检索 notification_key:

public String recuperarChave(String senderId, String userId) throws IOException, JSONException {
Uri.Builder uriBuilded = new Uri.Builder();
uriBuilded.scheme("https").appendQueryParameter("notification_key_name", userId)
.encodedAuthority("fcm.googleapis.com/fcm/notification")
.build();
String buildUrl = uriBuilded.build().toString();
URL url = new URL( buildUrl);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(false);
// HTTP request header
con.setRequestProperty("Authorization", "key=Authorization_Key");
con.setRequestProperty("project_id", senderId);
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accent", "application/json");
con.setRequestMethod("GET");
con.connect();
// Read the response into a string
InputStream is = con.getInputStream();
String responseString = new Scanner(is, "UTF-8").useDelimiter("\\A").next();
is.close();
// Parse the JSON string and return the notification key
JSONObject response = new JSONObject(responseString);
return response.getString("notification_key");
}

创 build 备组:

public String criarGrupo(String senderId, String userId, String registrationId)
throws IOException, JSONException {
URL url = new URL("https://fcm.googleapis.com/fcm/notification");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
// HTTP request header
con.setRequestProperty("Authorization", "key=Authorization_Key");
con.setRequestProperty("project_id", senderId);
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accept", "application/json");
con.setRequestMethod("POST");
con.connect();
// HTTP request
JSONObject data = new JSONObject();
data.put("operation", "create");
data.put("notification_key_name", userId);
data.put("registration_ids", new JSONArray(Collections.singletonList(registrationId)));
// Stream
OutputStream os = con.getOutputStream();
os.write(data.toString().getBytes(Charset.forName("UTF-8")));
os.close();
// Read the response into a string
InputStream is = con.getInputStream();
String responseString = new Scanner(is, "UTF-8").useDelimiter("\\A").next();
is.close();
// Parse the JSON string and return the notification key
JSONObject response = new JSONObject(responseString);
return response.getString("notification_key");
}

我还考虑过将 map 与设备的 token 一起存储,并通过它们进行迭代以发送通知。但我想知道这是否是一个好的做法。

所以我的选择是:

1 - 使用 Cloud Functions 监听数据库变化,获取存储的 token 列表并管理设备组创建,添加设备和删除设备。(在那种情况下如何完成?)。

2 - 尝试从客户端应用管理设备组。(在文档中似乎不推荐)。

3 - 迭代 token 列表并为每个 token 发送一条消息。(在这种情况下,它将是用户列表的迭代,并且在每个用户中,迭代用户列表/代币 map 。

4 - 也许在最后一个镜头中我可以使用 TOPICS。类似于 /topics/userId 和用户注销时取消订阅。将是一种不好的做法或在未来造成任何问题)。

我想知道什么是适合我的情况的最佳方法。

我希望我的问题不难理解。

谢谢!

最佳答案

我推荐第 3 种解决方案。但是您需要将实时数据库重构为这样。

fcm_tokens
- userid
-device_token1 : fcm token
-device_token2 : fcm token

所以当你需要发送fcm给你的用户时,你只需要找到用户的userId,并遍历fcm_tokens\用户id\节点

关于android - FCM 通知 - 多个设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54681732/

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