之后要重定向的地方
是否可以使用firebase推动通知通过通知发送可点击的图像,如果是的,我应该在哪里开始学习如何做?
是的。在FCM上,推动了两个部分。1)通知2)数据。通知零件由Google完全管理。因此,您必须使用数据零件。在数据零件中发送基本64映像字符串,并在应用程序中将其解码为图像。请参阅下面的
if (remoteMessage.getData().size() > 0) {
Log.d(TAG, "Message data payload: " + remoteMessage.getData());
Jsonobject obj=new JsonObject(remoteMessage.getData());
String image=obj.getString(“image_base64_string”);
//which you have to send from your backend or firebase console using this key
//then decode this image to bitmap and setimage to the imageview
}
// Check if message contains a notification payload.
if (remoteMessage.getNotification() != null) {
Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
}
是的,您可以在通知有效载荷中发送"click_action" => "http://google.com"
,以指导click_action the the the the Notification以及在用户轻按收到的Notificaiton