我正在尝试为用户有多个设备的情况创建一个设备组。我用设备令牌制作了一张地图。 现在,我想知道是否可以使用云功能来生成设备组令牌:
然后,在用户的“ app_list”地图上侦听更改,然后在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应用程序生成设备组令牌,但是在我的测试中,我每次都生成一个不同的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");
}
创建设备组:
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");
}
我还考虑过只将地图与设备的令牌一起存储,然后遍历它们以发送通知。但我想知道这是否是个好习惯。
所以我的选择是:
1-使用Cloud Functions监听数据库更改,获取存储的令牌列表并管理设备组的创建,添加设备和删除设备。(在这种情况下,如何完成?)。
2-尝试从客户端应用程序管理设备组。(在文档中,似乎不建议这样做)。
3-迭代令牌列表并为每个令牌发送一条消息。(在这种情况下,这是用户列表的迭代,并且在每个用户中,迭代用户列表。 /令牌地图。
4-也许在最后一枪中我可以使用TOPICS。类似于 / topics / userId 并在用户注销时取消订阅。(在这种情况下,我想知道与用户一样多的主题是否不错。如果我有更具体的主题,它会将会是一个不好的做法,否则将来会造成任何问题。
我想知道哪种方法对我的案情最好。
我希望我的问题不难理解。
谢谢!
答案 0 :(得分:1)
我建议使用解决方案编号3。但是您需要像这样重组您的实时数据库。
fcm_tokens
- userid
-device_token1 : fcm token
-device_token2 : fcm token
因此,当您需要将fcm
发送给您的一个用户时,只需要找到该用户的userId
,并通过fcm_tokens\userid\
节点进行迭代即可