C'est la première fois que j'utilise FCM.
Je télécharge un échantillon de firebase / quickstart-android et j'installe le FCM Quickstart. Mais je ne peux pas obtenir de jeton du journal, même appuyez sur le bouton LOG TOKEN dans l'application.
Ensuite, j'essaie d'envoyer un message avec la console Firebase et de définir le ciblage du nom de mon package d'application. J'ai reçu des messages entrants.
Je veux savoir si FCM peut être utilisé? GCM tout est ok.
Solution:
Parce que je ne suis pas un développeur Android, juste un développeur backend. Il me faut donc un certain temps pour le résoudre. À mon avis, il y a quelques bugs dans l'exemple d'application.
Code:
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.
}
}
Ajoutez ceci dans le fichier MainActivity.java.
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
Après avoir fait ci-dessus, vous obtenez le jeton dans Logcat. Mais finalement, je trouve un moyen pratique de l'obtenir. Utilisez simplement le mode débogage pour installer l'exemple d'application et vous pourrez obtenir le jeton lors de la première installation.
Mais je ne sais pas pourquoi il ne peut pas imprimer le journal lorsque je l'installe. Peut-être être lié au système mobile.
Et puis pourquoi je ne peux pas obtenir la notification. FirebaseMessagingService.onMessageReceived n'a pas appelé sendNotification