web-dev-qa-db-ja.com

プッシュ通知付きディープリンク-FCM-Android

欲しいもの:ユーザーにプッシュ通知を送信したい。ユーザーがその通知をタップすると、ユーザーは特定のアクティビティに移動する必要があります。

私がやったこと:Firebaseコンソールにディープリンクを1つ作成しました。 FirebaseInstanceIdServiceFirebaseMessagingServiceも実装しました。 Firebaseコンソールから送信したFirebaseメッセージをキャッチできます。

問題点:Firebaseコンソールで作成したダイナミックリンクをキャッチできません。

私のコードは以下のようなものです。

MyFirebaseInstanceIDService.Java

    public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService {

    private final String TAG = "MyFirebaseInstanceID";

    @Override
    public void onTokenRefresh() {

        String refreshedToken = FirebaseInstanceId.getInstance().getToken();

        Log.e(TAG, "Refreshed token: " + refreshedToken);
    }
}

MyFirebaseMessagingService.Java

    public class MyFirebaseMessagingService extends FirebaseMessagingService {

    private final String TAG = "MyFbaseMessagingService";

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

        String message = remoteMessage.getNotification().getBody();

        Log.e(TAG, "\nmessage: " + message);

        sendNotification(message);
    }

    private void sendNotification(String message) {

        Intent intent = new Intent(this, TestDeepLinkActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

        NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
                .setAutoCancel(true)
                .setContentTitle("FCM Test")
                .setContentText(message)
                .setSound(defaultSoundUri)
                .setSmallIcon(R.drawable.common_google_signin_btn_icon_dark)
                .setContentIntent(pendingIntent);

        NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        manager.notify(0, builder.build());
    }
}

Firebase Console Image

Firebase Console Image

8
Maulik Dodia

解決策:

  • マニフェストファイルのアクティビティにintent-filterを追加し、プッシュ通知をタップする必要があります。この通知には、Android用語でディープリンクと呼ばれるURLがあります。ディープリンクの詳細については、以下のリンクを参照してください。

https://developer.Android.com/training/app-links/deep-linking

  • これら2つのリンクをディープリンクとして使用していました:「www.somedomain.com/about」と「www.somedomain.com/app」。

  • Intent-filterにhttpまたはhttpsを追加しないでください。サポートされていません。 Chekout this より明確にするための会話。私はそのチャットの画像も入れています。将来的にリンクが期限切れになった場合。

enter image description here

  • ディープリンクをNotificationManagerに渡す方法については、以下のコードを参照してください。インテントフィルターは、特定のアクティビティを自動的にインターセプトして起動します。

MyFirebaseMessagingService.Java

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {

        Map<String, String> data = remoteMessage.getData();

        String title = data.get("title");
        String message = data.get("message");
        String deepLink = data.get("deepLink");

        Notification notification = new Notification();
        notification.setTitle(title);
        notification.setMessage(message);
        notification.setDeepLink(deepLink);

        sendNotification(this, title, message, deepLink);
    }

    public static void sendNotification(Context context, String title, String message, String deepLink) {

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

        if (Build.VERSION.SDK_INT >= 26) {
            NotificationChannel notificationChannel = new NotificationChannel("any_default_id", "any_channel_name",
                    NotificationManager.IMPORTANCE_HIGH);
            notificationChannel.setDescription("Any description can be given!");
            notificationManager.createNotificationChannel(notificationChannel);
        }

        Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context)
                .setAutoCancel(true)
                .setSound(defaultSoundUri)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setPriority(Android.app.Notification.PRIORITY_MAX)
                .setDefaults(Android.app.Notification.DEFAULT_ALL)
                .setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher));

        Intent intent = new Intent();

        intent.setAction(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(deepLink));
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_ONE_SHOT);

        notificationBuilder
                .setContentTitle(title)
                .setContentText(message)
                .setContentIntent(pendingIntent);

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

AndroidManifest.xml

<activity
    Android:name=".mvp.view.activity.ActivityName"
    Android:label="@string/title_activity_name"
    Android:theme="@style/AppTheme.NoActionBar">

    <intent-filter>
        <action Android:name="Android.intent.action.VIEW" />

        <category Android:name="Android.intent.category.DEFAULT" />
        <category Android:name="Android.intent.category.BROWSABLE" />

        <data
            Android:Host="www.somedomain.com"
            Android:path="/about"
            Android:scheme="app" />
    </intent-filter>

    <intent-filter>
        <action Android:name="Android.intent.action.VIEW" />

        <category Android:name="Android.intent.category.DEFAULT" />
        <category Android:name="Android.intent.category.BROWSABLE" />

        <data
            Android:Host="www.somedomain.com"
            Android:path="/contact"
            Android:scheme="app" />
    </intent-filter>
</activity>

追加:

  • そのアクティビティでさらにデータ(つまり、userIdまたはloanId)を受け取りたい場合は、サーバー(つまり、バックエンドまたはWebベースのダッシュボード)からプッシュ通知を送信しながら、それを渡すことができます。以下のようにすることができます。

    {
     "data": {
     "userId": "65431214564651251456",
     "deepLink": "www.somedomain.com/app",
     "title": "This is title!",
     "message": "This is message!"
     },
    "to": "FCM token here"
    }
    
  • 重要:以下のJSONは機能しません。これは参照専用です。これは、ドキュメントのどこにも言及されていません。親切に気をつけてください。正しいJSONは上記です。

{
    "to": "FCM Token here",
        "notification": {
            "Body": "This week’s edition is now available.",
            "title": "NewsMagazine.com",
            "icon": "new"
        },
        "data": {
            "title": "This is title!",
            "message": "This is message!"
    }
}
  • メソッドonMessageReceivedofMyFirebaseMessagingService以下のようなクラス。
String userId = data.get("userId");
intent.putExtra(Intent.EXTRA_TEXT, userId);
  • そのアクティビティでは、onCreateメソッドで次のように記述できます。
Intent intent = getIntent();
if (intent != null) {
    String intentStringExtra = intent.getStringExtra(Intent.EXTRA_TEXT);
    if (intentStringExtra != null) {
        userId = intentStringExtra;
    }
}

5
Maulik Dodia