firebase - 带有推送通知的深层链接 - FCM - Android

标签 firebase firebase-cloud-messaging deep-linking firebase-dynamic-links android-push-notification

我想要什么:我想向用户发送推送通知。当用户点击该通知时,用户应导航到特定事件。

我做了什么:我在 Firebase 控制台中创建了一个深层链接。我还实现了 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 控制台图像

Firebase Console Image

最佳答案

解决方案:

  • 我必须在我想要进入的 list 文件中的事件中添加意图过滤器,点击推送通知。此通知将包含一些在 Android 术语中称为深度链接的 url。您可以引用以下链接了解有关深层链接的更多信息。

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

  • 我使用这两个链接作为深层链接:“www.somedomain.com/about”和“www.somedomain.com/app”。

  • 请不要在意图过滤器中添加httphttps,它们不受支持。查看 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!"
    }
}
  • 您可以在 MyFirebaseMessagingService 类的方法 onMessageReceived 中接收额外数据(即 userId 或 LoanId),如下所示。
String userId = data.get("userId");
intent.putExtra(Intent.EXTRA_TEXT, userId);
  • 在该 Activity 中,您可以在 onCreate 方法中编写如下内容。
Intent intent = getIntent();
if (intent != null) {
    String intentStringExtra = intent.getStringExtra(Intent.EXTRA_TEXT);
    if (intentStringExtra != null) {
        userId = intentStringExtra;
    }
}

关于firebase - 带有推送通知的深层链接 - FCM - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51148080/

相关文章:

java - 从 Firebase Android 读取值并更新它

firebase - 在设定的时间后只运行一次 cron 作业

android - 将 GCM 迁移到 FirebaseCM : onMessageReceived() not called in foreground

deep-linking - Jetpack 撰写 : Bottom bar navigation not responding after deep-linking

node.js - 我无法读取 Firebase Functions 上的数据

python - FCM API 'Bad request 400' 错误

ios - 如何在 Swift 的 didReceiveRemoteNotification 上从 App Delegate 推送 View Controller ?

android - Android应用程序中的深度链接

android - 避免 Twilio SMS 中的小 url

objective-c - 无法将 Objective-C 代码导入 Swift 文件