这是我第一次使用FCM。
我从firebase / quickstart-android下载了一个示例,并安装了FCM快速入门。但是我什至没有点击应用程序中的LOG TOKEN按钮就无法从日志中获取任何令牌。
然后,我尝试使用Firebase控制台发送一条消息,并设置为以我的应用程序包名称为目标。我收到了传入消息。
我想知道可以使用FCM吗?GCM一切正常。
解:
因为我不是Android开发人员,所以只是后端开发人员。因此,我需要一些时间来解决它。我认为示例应用程序中存在一些错误。
码:
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.
}
}
将其添加到MainActivity.java中。
Intent intent = new Intent(this, RegistrationIntentService.class);
startService(intent);
完成上述操作后,您将在Logcat中获得令牌。但最后,我找到了一种方便的方法。只需使用调试模式安装示例应用程序,您就可以在首次安装时获取令牌。
但是我不知道为什么安装它时它无法打印日志。可能与移动系统有关。
然后为什么我不能收到通知。FirebaseMessagingService.onMessageReceived没有调用sendNotification