这是我第一次使用 FCM。
我从 Firebase/Quick start-android下载了一个示例并安装了 FCM 快速启动。但是我不能从日志中得到任何令牌甚至在应用程序中击中 日志标记按钮。
然后我尝试用 Firebase 控制台发送一条消息,并设置为针对我的应用程序包名称。我收到了来电。
我想知道是否可以使用 FCM? GCM 一切正常。
解决方案:
因为我不是一个 Android 开发者,只是一个后端开发者。所以我需要点时间来解决。在我看来,这个示例应用程序有一些缺陷。
密码:
RegistrationInentService.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);
}
}
我的 FirebaseInstanceIDService.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.
}
}
在 MainActivity.java 中添加这个。
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
完成以上操作后,您将在 Logcat 获得令牌。但是最后,我找到了一个 方便的方法来获取 it.只需使用调试模式来安装示例应用程序,您可以在第一次安装它时获取令牌。
但我不知道为什么安装的时候不能打印日志。可能跟移动系统有关。
然后为什么我不能得到通知。 已收到 FirebaseMessagingService.onMessageRecected没有呼叫 SendNotification