1

我在獲取刷新令牌在firebase中遇到了問題。我已經通過文檔,並完全按照Android的步驟。在我的日誌中,我發現Firebase連接成功。不知道爲什麼我沒有獲取實例標記。我處於初始階段,試圖在logcat中獲取令牌。沒有獲取刷新令牌firebase android

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.project.application" 
    android:versionCode="1" 
    android:versionName="1.0" > 

    <uses-sdk 
     android:minSdkVersion="9" 
     android:targetSdkVersion="17" /> 

    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.GET_ACCOUNTS" /> 

    <uses-permission android:name="android.permission.VIBRATE" /> 
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> 

    <application 
     android:allowBackup="false" 
     android:icon="@drawable/icon" 
     android:label="@string/app_name" > 
     <activity 
      android:name=".ProjectName" 
      android:configChanges="keyboard|keyboardHidden|orientation|screenSize" 
      android:icon="@drawable/icon" 
      android:label="@string/app_name" 
      android:theme="@android:style/Theme.Light.NoTitleBar"> 

      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 
       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
      <meta-data 
       android:name="com.google.android.gms.version" 
       android:value="@integer/google_play_services_version" /> 
     </activity> 

     <service 
      android:name=".MyInstanceIDListenerService"> 
      <intent-filter> 
       <action android:name="com.google.firebase.INSTANCE_ID_EVENT" /> 
      </intent-filter> 
     </service> 

     <service 
      android:name=".MyFirebaseInstanceIDService"> 
      <intent-filter> 
       <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/> 
      </intent-filter> 
     </service>  
    </application> 

</manifest> 

    public class MyInstanceIDListenerService extends FirebaseInstanceIdService{  
    private static final String TAG = "MyFirebaseIIDService"; 
    @Override 
    public void onTokenRefresh() { 
     // Get updated InstanceID token. 
     String refreshedToken = FirebaseInstanceId.getInstance().getToken(); 

     Log.d(TAG, "Refreshed token: " + refreshedToken); 
     sendRegistrationToServer(refreshedToken); 

    } 

public class MyFirebaseMessagingService extends FirebaseMessagingService { 

private static final String TAG = "MyFirebaseMsgService"; 
@Override 
public void onMessageReceived(RemoteMessage remoteMessage) { 
    // TODO(developer): Handle FCM messages here. 

    Log.d(TAG, "From: " + remoteMessage.getFrom()); 
    String messageBody = null; 

    // Check if message contains a data payload. 
    if (remoteMessage.getData().size() > 0) { 
     Log.d(TAG, "Message data payload: " + remoteMessage.getData()); 
    } 

    if (remoteMessage.getNotification() != null) { 
     messageBody = remoteMessage.getNotification().getBody(); 
     Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody()); 
    } 

    sendNotification(messageBody); 

} 
private void sendNotification(String messageBody) { 
    Intent intent = new Intent(this, SplashActivity.class); 
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent, 
      PendingIntent.FLAG_ONE_SHOT); 

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION); 
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) 
      .setSmallIcon(R.drawable.ic_stat_ic_notification) 
      .setContentTitle("FCM Message") 
      .setContentText(messageBody) 
      .setAutoCancel(true) 
      .setSound(defaultSoundUri) 
      .setContentIntent(pendingIntent); 

    NotificationManager notificationManager = 
      (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build()); 
} 

}

+0

令牌只生成一次。您需要清除您的應用數據才能獲得新的推送令牌。 – ZeroOne

+0

如果我已經正確理解你,我還沒有一次。我遵循了firebase andriod中的步驟,並且我期待log中的令牌。但是我根本無法看到這個Log.d(標記,「刷新標記:」+ refreshedToken)。我應該至少用「刷新令牌」記錄日誌。但是在日誌中沒有記錄。 – jenny

+0

是否用'startService(新的Intent(this,MyFirebaseMessagingService .class))啓動服務;' –

回答

6

onTokenRefresh()方法不會在第一次安裝應用程序時觸發。它僅由specific scenarios觸發。

要獲得令牌,必須在應用程序的開始時調用FirebaseInstanceId.getInstance().getToken()(如onCreate或其他)。

+0

如果我在創建,我得到令牌。但仍然沒有從Firebase控制檯獲取通知消息。 – jenny

+0

@jenny你可以發佈你的Android端代碼來接收消息嗎? –

+0

我已更新我的消息服務代碼。儘管我登錄日誌,但仍然無法在移動設備上收到通知。 – jenny

1

解決您的許可

<permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature" /> 
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" /> 

請確保您有正確的谷歌,service.json。

注意:令牌只生成一次。嘗試清理應用程序的數據,以獲得新令牌

編輯:

或者你可以做迭代令牌手動讓您在活動/片段類

FirebaseInstanceId iid = FirebaseInstanceId.getInstance(); 
String token = iid.getToken(); 

while(token == null){ 
    iid = FirebaseInstanceId.getInstance(); 
    token = iid.getToken(); 
} 

Logger.info("TOKEN","==>"+token); 
1

FCMhere

GitHub的項目

文檔onTokenRefresh()爲:

  • 如果InstanceID令牌已更新,則調用。如果以前令牌的安全性受到影響,則可能會發生這種情況。請注意,當最初生成InstanceID標記時會調用此標記,因此這是您要檢索該標記的位置。

你要的,你Clear Cache應用程序或重新安裝,以便調用此方法。

0

嘗試刪除google-services.json文件並重新添加它。