@capacitor/push-notifications
Push Notifications API 提供对原生推送通知的访问。
安装
npm install @capacitor/push-notifications@latest-6
npx cap sync
iOS
在 iOS 上,您必须启用 Push Notifications 功能。请参阅设置功能了解如何启用该功能的说明。
启用 Push Notifications 功能后,将以下内容添加到您的应用的 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
Push Notification API 使用 Firebase Cloud Messaging SDK 处理通知。请参阅在 Android 上设置 Firebase Cloud Messaging 客户端应用并按照说明创建 Firebase 项目并注册您的应用程序。无需将 Firebase SDK 添加到您的应用或编辑应用清单——Push Notifications 已为您提供。只需要将 Firebase 项目的 google-services.json 文件添加到应用的模块(应用级)目录中。
Android 13 需要权限检查才能接收推送通知。当目标 SDK 为 33 时,您需要相应地调用 checkPermissions() 和 requestPermissions()。
从 Android 15 开始,用户可以在私人空间中安装应用。用户可以随时锁定其私人空间,这意味着推送通知在用户解锁之前不会显示。
无法检测应用是否安装在私人空间中。因此,如果您的应用显示任何关键通知,请告知您的用户避免在私人空间中安装该应用。
有关您的应用与私人空间相关的行为变更的更多信息,请参阅 Android 文档。
变量
此插件将使用以下项目变量(在应用的 variables.gradle 文件中定义):
firebaseMessagingVersion:com.google.firebase:firebase-messaging的版本(默认值:23.3.1)
推送通知图标
在 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 与所选选项使用的 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('Registration token: ', token.value);
});
await PushNotifications.addListener('registrationError', err => {
console.error('Registration error: ', err.error);
});
await PushNotifications.addListener('pushNotificationReceived', notification => {
console.log('Push notification received: ', notification);
});
await PushNotifications.addListener('pushNotificationActionPerformed', notification => {
console.log('Push notification action performed', 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('User denied permissions!');
}
await PushNotifications.register();
}
const getDeliveredNotifications = async () => {
const notificationList = await PushNotifications.getDeliveredNotifications();
console.log('delivered notifications', notificationList);
}
API
register()unregister()getDeliveredNotifications()removeDeliveredNotifications(...)removeAllDeliveredNotifications()createChannel(...)deleteChannel(...)listChannels()checkPermissions()requestPermissions()addListener('registration', ...)addListener('registrationError', ...)addListener('pushNotificationReceived', ...)addListener('pushNotificationActionPerformed', ...)removeAllListeners()- Interfaces
- Type Aliases
register()
register() => Promise<void>
注册应用以接收推送通知。
此方法将触发 'registration' 事件(包含推送令牌)或
'registrationError'(如果有问题)。它不会提示用户
通知权限,请先使用 requestPermissions()。
始于: 1.0.0
unregister()
unregister() => Promise<void>
从推送通知中取消注册应用。
这将在 Android 上删除 Firebase 令牌,并在 iOS 上取消注册 APNS。
始于: 5.0.0
getDeliveredNotifications()
getDeliveredNotifications() => Promise<DeliveredNotifications>
获取通知屏幕上可见的通知列表。
返回:
Promise<DeliveredNotifications>
始于: 1.0.0
removeDeliveredNotifications(...)
removeDeliveredNotifications(delivered: DeliveredNotifications) => Promise<void>
从通知屏幕上移除指定的通知。
| 参数 | 类型 |
|---|---|
delivered | |
始于: 1.0.0
removeAllDeliveredNotifications()
removeAllDeliveredNotifications() => Promise<void>
从通知屏幕上移除所有通知。
始于: 1.0.0
createChannel(...)
createChannel(channel: Channel) => Promise<void>
创建一个通知频道。
仅适用于 Android O 或更新版本(SDK 26+)。
| 参数 | 类型 |
|---|---|
channel | |
始于: 1.0.0
deleteChannel(...)
deleteChannel(args: { id: string; }) => Promise<void>
删除一个通知频道。
仅适用于 Android O 或更新版本(SDK 26+)。
| 参数 | 类型 |
|---|---|
args | { id: string; } |
始于: 1.0.0
listChannels()
listChannels() => Promise<ListChannelsResult>
列出可用的通知频道。
仅适用于 Android O 或更新版本(SDK 26+)。
返回:
Promise<ListChannelsResult>
始于: 1.0.0
checkPermissions()
checkPermissions() => Promise<PermissionStatus>
检查接收推送通知的权限。
在 Android 12 及更低版本上,状态始终为已授权,因为您始终可以 接收推送通知。如果您需要检查用户是否允许 显示通知,请使用 local-notifications 插件。
返回:
Promise<PermissionStatus>
始于: 1.0.0
requestPermissions()
requestPermissions() => Promise<PermissionStatus>
请求接收推送通知的权限。
在 Android 12 及更低版本上,不会提示权限,因为您始终可以 接收推送通知。
在 iOS 上,第一次使用该函数时,会提示用户 推送通知权限并根据用户选择返回已授权或已拒绝。 在后续调用中,将获取权限的当前状态而不再次提示。
返回:
Promise<PermissionStatus>
始于: 1.0.0
addListener('registration', ...)
addListener(eventName: 'registration', listenerFunc: (token: Token) => void) => Promise<PluginListenerHandle>
当推送通知注册成功完成时调用。
提供推送通知令牌。
| 参数 | 类型 |
|---|---|
eventName | 'registration' |
listenerFunc | |
返回:
Promise<PluginListenerHandle>
始于: 1.0.0
addListener('registrationError', ...)
addListener(eventName: 'registrationError', listenerFunc: (error: RegistrationError) => void) => Promise<PluginListenerHandle>
当推送通知注册完成但出现问题时调用。
提供注册问题的错误信息。
| 参数 | 类型 |
|---|---|
eventName | 'registrationError' |
listenerFunc | |
返回:
Promise<PluginListenerHandle>
始于: 1.0.0
addListener('pushNotificationReceived', ...)
addListener(eventName: 'pushNotificationReceived', listenerFunc: (notification: PushNotificationSchema) => void) => Promise<PluginListenerHandle>
当设备收到推送通知时调用。
| 参数 | 类型 |
|---|---|
eventName | 'pushNotificationReceived' |
listenerFunc | |
返回:
Promise<PluginListenerHandle>
始于: 1.0.0
addListener('pushNotificationActionPerformed', ...)
addListener(eventName: 'pushNotificationActionPerformed', listenerFunc: (notification: ActionPerformed) => void) => Promise<PluginListenerHandle>
当对推送通知执行操作时调用。
| 参数 | 类型 |
|---|---|
eventName | 'pushNotificationActionPerformed' |
listenerFunc | |
返回:
Promise<PluginListenerHandle>
始于: 1.0.0
removeAllListeners()
removeAllListeners() => Promise<void>
移除此插件的所有原生监听器。
始于: 1.0.0
接口
DeliveredNotifications
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
notifications | PushNotificationSchema[] | 通知屏幕上可见的通知列表。 | 1.0.0 |
PushNotificationSchema
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
title | string | 通知标题。 | 1.0.0 |
subtitle | string | 通知副标题。 | 1.0.0 |
body | string | 通知的主要文本负载。 | 1.0.0 |
id | string | 通知标识符。 | 1.0.0 |
tag | string | 通知标签。仅适用于 Android(来自推送通知)。 | 4.0.0 |
badge | number | 要在应用图标角标上显示的数字。 | 1.0.0 |
notification | any | 不会被返回。 | 1.0.0 |
data | any | 包含在推送通知负载中的任何附加数据。 | 1.0.0 |
click_action | string | 用户打开通知时要执行的操作。仅适用于 Android。 | 1.0.0 |
link | string | 来自通知的深度链接。仅适用于 Android。 | 1.0.0 |
group | string | 设置通知分组的组标识符。仅适用于 Android。类似于 iOS 上的 threadIdentifier。 | 1.0.0 |
groupSummary | boolean | 将此通知指定为关联 group 的摘要。仅适用于 Android。 | 1.0.0 |
Channel
| 属性 | 类型 | 描述 | 默认值 | 始于 |
|---|---|---|---|---|
id | string | 频道标识符。 | 1.0.0 | |
name | string | 此频道的人类友好名称(对用户显示)。 | 1.0.0 | |
description | string | 此频道的描述(对用户显示)。 | 1.0.0 | |
sound | string | 投递到此频道的通知应播放的声音。重要性至少为 3 的通知频道应有声音。声音文件的文件名应相对于 Android 应用的 res/raw 目录指定。 | 1.0.0 | |
importance | | 投递到此频道的通知的中断级别。 | | 1.0.0 |
visibility | | 投递到此频道的通知的可见性。此设置用于控制投递到此频道的通知是否在锁定屏幕上显示,以及如果显示,是否以编辑形式显示。 | 1.0.0 | |
lights | boolean | 投递到此频道的通知是否应显示通知指示灯(在支持的设备上)。 | 1.0.0 | |
lightColor | string | 投递到此频道的通知的指示灯颜色。仅在此频道上启用了指示灯且设备支持时有效。支持的颜色格式为 #RRGGBB 和 #RRGGBBAA。 | 1.0.0 | |
vibration | boolean | 投递到此频道的通知是否应振动。 | 1.0.0 |
ListChannelsResult
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
channels | Channel[] | 应用创建的所有频道的列表。 | 1.0.0 |
PermissionStatus
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
receive | | 接收通知的权限状态。 | 1.0.0 |
PluginListenerHandle
| 属性 | 类型 |
|---|---|
remove | () => Promise<void> |
Token
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
value | string | 在 iOS 上包含 APNS 令牌。在 Android 上包含 FCM 令牌。 | 1.0.0 |
RegistrationError
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
error | string | 描述注册失败的错误消息。 | 4.0.0 |
ActionPerformed
| 属性 | 类型 | 描述 | 始于 |
|---|---|---|---|
actionId | string | 对通知执行的操作。 | 1.0.0 |
inputValue | string | 在通知操作上输入的文本。仅适用于 iOS。 | 1.0.0 |
notification | | 执行操作的通知。 | 1.0.0 |