Chcę obsłużyć wiadomość powiadomienia Firebase w tle, a także na pierwszym planie. Wyślę wiadomość, która będzie zawierała link do youtube od programisty, a gdy użytkownik kliknie na pasku powiadomień, musi skierować użytkownika, aby otworzyć łącze. Czy ktoś wie, jak to się robi?Jak obsługiwać powiadomienia Firebase na tle, a także na pierwszym planie?
public void onMessageReceived(RemoteMessage remoteMessage) {
// [START_EXCLUDE]
// There are two types of messages data messages and notification messages. Data messages are handled
// here in onMessageReceived whether the app is in the foreground or background. Data messages are the type
// traditionally used with GCM. Notification messages are only received here in onMessageReceived when the app
// is in the foreground. When the app is in the background an automatically generated notification is displayed.
// When the user taps on the notification they are returned to the app. Messages containing both notification
// and data payloads are treated as notification messages. The Firebase console always sends notification
// [END_EXCLUDE]
// TODO(developer): Handle FCM messages here.
// Not getting messages here? See why this may be:
Log.d(TAG, "From: " + remoteMessage.getFrom());
// Check if message contains a data payload.
if (remoteMessage.getData().size() > 0) {
Log.d(TAG, "Message data payload: " + remoteMessage.getData());
}
// Check if message contains a notification payload.
if (remoteMessage.getNotification() != null) {
Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
}
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
}
co zrobić, aby osiągnąć mój cel? Z góry dziękuję :)
Kod napisali to tylko jedna z próbek. Przypuszczam, że przeszedłeś przez nie. Czy było w tym coś dezorientującego? Czy przejrzałeś również dokumenty? W tej chwili jest to podobne do pytania * daj mi kod *. –
Wypróbuj moje rozwiązanie?
Już wypróbowałem to.
I działa
https://stackoverflow.com/questions/48897883/how-to-handle-notifications-with-fcm-when-app-is-in-either-foreground-or-backgro/48899186#48899186 –