7

firebaseによるプッシュを実装しました。

通知を送信していますが、ステータスが「失敗」になっています。すべてのデバイスに通知を送信すると、完了としてマークされますが、まだデバイスにメッセージが届きません。

単一のデバイスにメッセージを送信しても、失敗したと表示され、デバイスで通知を受信しません。

コードは

private static final String TAG = "StartingAndroid";

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

    //It is optional
    Log.e(TAG, "From: " + remoteMessage.getFrom());
    Log.e(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());

    //Calling method to generate notification
    sendNotification(remoteMessage.getNotification().getTitle(),remoteMessage.getNotification().getBody());
}

//This method is only generating push notification
private void sendNotification(String title, String messageBody) {
    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,
            PendingIntent.FLAG_ONE_SHOT);

    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setContentTitle(title)
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

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

    notificationManager.notify(0, notificationBuilder.build());
}

ここにコンソールがあります

4

2 に答える 2

4

送信者 ID が一致しないか、アプリケーションに間違ったプロジェクト ID を入力しました。

于 2016-06-24T20:26:23.103 に答える
1

ログを見ると、登録 ID を介して特定のデバイスに送信していると思いますが、送信者 ID が一致しないというエラーが表示されます。これらの登録 ID が有効であり、正しいアプリに適用されていることを確認してください。

于 2016-06-24T14:39:32.650 に答える