@capacitor/push-notifications
推送通知 API 提供对原生推送通知的访问。
安装
npm install @capacitor/push-notifications@latest-5
npx cap sync
iOS
在 iOS 上,你必须启用推送通知功能。请参阅 设置功能 了解如何启用该功能的说明。
启用推送通知功能后,将以下内容添加到你的应用的 AppDelegate.swift:
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
NotificationCenter.default.post(name: .capacitorDidRegisterForRemoteNotifications, object: deviceToken)
}
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
NotificationCenter.default.post(name: .capacitorDidFailToRegisterForRemoteNotifications, object: error)
}
Android
推送通知 API 使用 Firebase Cloud Messaging SDK 来处理通知。请参阅 在 Android 上设置 Firebase Cloud Messaging 客户端应用 并按照说明创建 Firebase 项目并注册你的应用程序。无需将 Firebase SDK 添加到你的应用或编辑你的应用清单——推送通知插件已为你提供这些。只需将 Firebase 项目的 google-services.json 文件添加到你的应用的模块(应用级)目录中即可。
Android 13 需要权限检查才能接收推送通知。在针对 SDK 33 时,你需要相应地调用 checkPermissions() 和 requestPermissions()。
变量
此插件将使用以下项目变量(定义在你的应用的 variables.gradle 文件中):
firebaseMessagingVersion版本为com.google.firebase:firebase-messaging(默认值:23.1.2)
推送通知图标
在 Android 上,应将具有适当名称的推送通知图标添加到 AndroidManifest.xml 文件中:
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@mipmap/push_icon_name" />
如果未指定图标,Android 将使用应用图标,但推送图标应为透明背景上的白色像素。由于应用图标通常不是这样,它会显示一个白色方块或圆圈。因此建议为推送通知提供单独的图标。
Android Studio 有一个图标生成器,你可以用来创建推送通知图标。
推送通知频道
从 Android 8.0(API 级别 26)及更高版本开始,支持并建议使用通知频道。SDK 将按以下顺序为传入的推送通知派生 channelId:
- 首先检查传入通知是否设置了
channelId。 当从 FCM 仪表板或通过其 API 发送推送通知时,可以指定channelId。 - 然后检查
AndroidManifest.xml中是否有可能的给定值。 如果你更喜欢创建和使用自己的默认频道,请将default_notification_channel_id设置为你的通知频道对象的 ID,如下所示;当传入消息未显式设置通知频道时,FCM 将使用此值。
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="@string/default_notification_channel_id" />
- 最后,它将使用 Firebase SDK 为我们提供的回退
channelId。 FCM 提供了一个具有基本设置的默认通知频道。该频道将在收到第一条推送消息时由 Firebase SDK 创建。
警告 使用选项 1 或 2 时,你仍然需要在代码中创建一个与所选选项使用的 ID 匹配的通知频道。你可以使用
createChannel(...)来实现。如果不这样做,SDK 将回退到选项 3。
前台时推送通知的外观
你可以配置应用在前台时推送通知的显示方式。
| 属性 | 类型 | 描述 | 自从 |
|---|---|---|---|
presentationOptions | PresentationOption[] | 这是一个可以组合的字符串数组。数组中可能的值有:- badge:更新应用图标上的徽章计数(默认值)- sound:收到推送通知时设备会响铃/振动 - alert:推送通知在原生对话框 中显示。如果不需要任何选项,可以提供空数组。badge 仅 iOS 可用。 | 1.0.0 |
示例
在 capacitor.config.json 中:
{
"plugins": {
"PushNotifications": {
"presentationOptions": ["badge", "sound", "alert"]
}
}
}
在 capacitor.config.ts 中:
/// <reference types="@capacitor/push-notifications" />
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
plugins: {
PushNotifications: {
presentationOptions: ["badge", "sound", "alert"],
},
},
};
export default config;
静默推送通知 / 纯数据通知
iOS
此插件不支持 iOS 静默推送(远程通知)。我们建议使用原生代码解决方案来处理这些类型的通知,请参阅 向应用推送后台更新。
Android
此插件支持纯数据通知,但如果应用已被杀死,将不会调用 pushNotificationReceived。要处理此场景,你需要创建一个扩展 FirebaseMessagingService 的服务,请参阅 处理 FCM 消息。
常见问题
在 Android 上,各种系统和应用状态可能会影响推送通知的投递:
- 如果设备已进入 Doze 模式,你的应用可能会受到功能限制。为了增加收到通知的几率,请考虑使用 FCM 高优先级消息。
- 开发和生产之间存在行为差异。尝试在 Android Studio 启动之外测试你的应用。更多信息请阅读 此处。
示例
import { PushNotifications } from '@capacitor/push-notifications';
const addListeners = async () => {
await PushNotifications.addListener('registration', token => {
console.info('注册令牌: ', token.value);
});
await PushNotifications.addListener('registrationError', err => {
console.error('注册错误: ', err.error);
});
await PushNotifications.addListener('pushNotificationReceived', notification => {
console.log('收到推送通知: ', notification);
});
await PushNotifications.addListener('pushNotificationActionPerformed', notification => {
console.log('推送通知操作已执行', notification.actionId, notification.inputValue);
});
}
const registerNotifications = async () => {
let permStatus = await PushNotifications.checkPermissions();
if (permStatus.receive === 'prompt') {
permStatus = await PushNotifications.requestPermissions();
}
if (permStatus.receive !== 'granted') {
throw new Error('用户拒绝了权限!');
}
await PushNotifications.register();
}
const getDeliveredNotifications = async () => {
const notificationList = await PushNotifications.getDeliveredNotifications();
console.log('已投递的通知', notificationList);
}
API
register()unregister()getDeliveredNotifications()removeDeliveredNotifications(...)removeAllDeliveredNotifications()createChannel(...)deleteChannel(...)listChannels()checkPermissions()requestPermissions()addListener('registration', ...)addListener('registrationError', ...)addListener('pushNotificationReceived', ...)addListener('pushNotificationActionPerformed', ...)removeAllListeners()- Interfaces
- Type Aliases