【发布时间】:2019-05-13 10:00:28
【问题描述】:
我有一个问题:如何使用带有自定义图像 url 的 onesignal 自定义从我的 android 应用发送的通知?
我应该发送如下图所示的通知:
如果我发送了没有自定义图像 URL 的基本通知,那也没关系。 我在我的 android 应用程序中编写了这个 json 以将请求发送到 onesignal:
String strJsonBody = "{"
+ "\"app_id\": \"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx\","
+ "\"filters\": [{\"field\": \"tag\", \"key\": \"firestoreUserId\", \"relation\": \"=\", \"value\": \"" + notificationBundle.getPost().getUserId() + "\"}],"
+ "\"data\": {\"postId\": \"" + notificationBundle.getPost().getId() + "\"" +
",\"postDescription\": \"" + notificationBundle.getPost().getDesc() + "\"},"
+ "\"contents\": {\"en\": \"Hey, " + notificationBundle.getUser().getFullName() + " notification\"}"
+ "}";
上面的 JSON 必须如何修改才能将图像添加到通知中?
提前致谢
【问题讨论】:
标签: android firebase push-notification google-cloud-firestore onesignal