Po raz pierwszy używam FCM.
Pobieram próbkę z firebase / quickstart-android i instaluję FCM Quickstart. Ale nie mogę pobrać żadnego tokena z dziennika, nawet naciskając przycisk LOG TOKEN w aplikacji.
Następnie próbuję wysłać wiadomość za pomocą konsoli Firebase i ustawiam docelową nazwę mojego pakietu aplikacji. Otrzymałem wiadomości.
Chcę wiedzieć, czy można używać FCM? GCM wszystko jest w porządku.
Rozwiązanie:
Ponieważ nie jestem programistą Androida, tylko programistą zaplecza. Więc rozwiązanie tego zajmuje mi trochę czasu. Moim zdaniem w przykładowej aplikacji jest kilka błędów.
Kod:
RegistrationIntentService.java
public class RegistrationIntentService extends IntentService {
private static final String TAG = "RegIntentService";
public RegistrationIntentService() {
super(TAG);
}
@Override
protected void onHandleIntent(Intent intent) {
String token = FirebaseInstanceId.getInstance().getToken();
Log.i(TAG, "FCM Registration Token: " + token);
}
}
MyFirebaseInstanceIDService.java
public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService {
private static final String TAG = "MyFirebaseIIDService";
/**
* Called if InstanceID token is updated. This may occur if the security of
* the previous token had been compromised. Note that this is called when the InstanceID token
* is initially generated so this is where you would retrieve the token.
*/
// [START refresh_token]
@Override
public void onTokenRefresh() {
// Get updated InstanceID token.
// String refreshedToken = FirebaseInstanceId.getInstance().getToken();
// Log.d(TAG, "Refreshed token: " + refreshedToken);
//
// // TODO: Implement this method to send any registration to your app's servers.
// sendRegistrationToServer(refreshedToken);
//
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
}
// [END refresh_token]
/**
* Persist token to third-party servers.
* <p>
* Modify this method to associate the user's FCM InstanceID token with any server-side account
* maintained by your application.
*
* @param token The new token.
*/
private void sendRegistrationToServer(String token) {
// Add custom implementation, as needed.
}
}
Dodaj to w pliku MainActivity.java.
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
Po wykonaniu powyższych , otrzymasz Token w Logcat. Ale w końcu znajduję wygodny sposób, aby to zdobyć. Po prostu użyj trybu debugowania, aby zainstalować przykładową aplikację, a token możesz uzyskać podczas pierwszej instalacji.
Ale nie wiem, dlaczego nie może wydrukować dziennika po zainstalowaniu. Może mieć związek z systemem mobilnym.
A potem dlaczego nie mogę otrzymać powiadomienia. FirebaseMessagingService.onMessageReceived nie wywołał sendNotification