开始
复制一个包含安装步骤和本插件的完整 Markdown 指南的配置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-notifications`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/notifications/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
@capgo/capacitor-notifications is the first-party Capgo plugin for native iOS and Android push notifications. It is built for Capgo’s dashboard, public API, Analytics Engine device registry, campaign stats, badge updates, and silent live-update checks.
需求
标题:需求- A Capacitor app already added to Capgo.
- 访问 Capgo 应用程序的通知选项卡。
- 一个具有写入访问权限的 Capgo API 密钥,用于后端证明铸造和 API 发送。
- 应用程序的 iOS 和/或 Android 平台推送权限
@capgo/capacitor-updater如果您想静默推送更新检查。
1. 配置Capgo 平台凭证
标题:1. 配置Capgo 平台凭证在Capgo 中打开应用,然后前往 通知.
为每个您要支持的平台添加一个平台凭证条目:
- Android - 应用程序包 ID 和 Android 推送项目元数据。
- iOS - 应用程序 ID、团队 ID、密钥 ID 和匹配的 iOS 推送密钥元数据。
Capgo 将显示必须在API 工作人员中存在的精确环境密钥名称。工作人员环境存储元数据和预期密钥引用。私密凭证本身留在工作人员环境中。
2. 安装
2. 安装为了获得最快的设置,请在您的应用程序项目中运行 Capgo CLI:
npx @capgo/cli@latest notifications setup com.example.app命令安装通知包,保存 Capacitor 插件配置,创建一个小型辅助文件,并运行 Capacitor 同步。除非您需要手动连接每个文件,否则请使用此路径创建新应用。
手动安装:
npm install @capgo/capacitor-notifications @capgo/capacitor-updaternpx cap sync如果您不使用静默 Capgo 更新检查,则可以省略 @capgo/capacitor-updater.
3. 配置插件
3. 配置插件配置插件一次,当您的应用程序启动时。
import { CapgoNotifications } from '@capgo/capacitor-notifications'
await CapgoNotifications.configure({ appId: 'com.example.app', autoUpdater: true, updateInstallMode: 'next',})使用 updateInstallMode: 'next' 下载更新并在下一次重启或后台循环中安装它。使用 updateInstallMode: 'set' 仅在您希望 Capgo 立即在安全时安装更新时使用。
4. minting an identity proof
标题:4. minting an identity proof不要将您的 Capgo API 密钥放入移动应用中。您的后端应该在您自己的用户身份验证成功后向 Capgo 请求一个 identityProof 终端窗口
curl -X POST 'https://api.capgo.app/notifications/recipients/proof' \ -H 'Content-Type: application/json' \ -H 'x-api-key: CAPGO_API_KEY' \ -d '{ "appId": "com.example.app", "externalId": "customer-user-123" }'返回到应用程序中并将您的会话响应传递给它。 identityProof 4. Mint An Identity Proof
5. 注册设备
标题:5. 注册设备只在您知道已登录的客户用户后注册。
const registration = await CapgoNotifications.register({ externalId: 'customer-user-123', identityProof, tags: ['paid', 'beta'], attributes: { plan: 'team', locale: 'en-US', }, consent: true,})
console.log(registration.recipientKey, registration.deviceKey)呼叫 register context
- 在Appflow迁移步骤2中
- 再次呼叫:
- 应用程序启动。
- 本机推送令牌发生变化。
- 已登录用户发生变化。
标签、属性或同意发生变化。
Section titled “6. 添加事件监听器”在应用启动时注册监听器,以便 JavaScript 可见前台、打开和后台事件。
await CapgoNotifications.addListener('registrationChanged', () => { void CapgoNotifications.register({ externalId: currentUser.id, identityProof: currentUser.capgoNotificationProof, tags: currentUser.notificationTags, consent: currentUser.pushConsent, })})
await CapgoNotifications.addListener('notificationReceived', (notification) => { console.log('Notification received', notification)})
await CapgoNotifications.addListener('notificationOpened', (event) => { console.log('Notification opened', event.notification.id)})
await CapgoNotifications.addListener('backgroundNotification', async (event) => { try { console.log('Background notification', event.notification.data) } finally { await event.finish() }})总是在工作完成后调用 finish() for 后台通知。保持工作短小且幂等。
7. iOS 配置
Section titled “7. iOS 配置”在 Xcode 中,打开应用目标并启用:
- 推送通知
- 背景模式 > 远程通知
将远程通知从 ios/App/App/AppDelegate.swift:
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { NotificationCenter.default.post(name: Notification.Name("CapgoNotificationsRemoteNotification"), object: userInfo) completionHandler(.newData)}然后运行:
npx cap sync ios在测试背景通知时,建议使用物理iOS设备。模拟器对于UI工作很有用,但不能代表生产背景推送行为。
8. Android设置
标题:8. Android设置然后运行:
npx cap sync android然后验证:
- 您的Android平台凭据已在Capgo中配置。
- 应用程序包ID与用于平台推送设置的包ID匹配。
- Android 13+ 通知权限在可见通知前请求。
- 应用程序具有与品牌匹配的通知图标和渠道策略。
- 您在具有 Google Play 服务的物理设备或模拟器上测试。
在应用程序启动时创建一个默认的 Android 通道:
await CapgoNotifications.configure({ appId: 'com.example.app' })
await CapgoNotifications.register({ externalId: currentUser.id, identityProof: currentUser.capgoNotificationProof, consent: true,})插件声明了 Android 推送消息服务。请在宿主应用中保留应用程序备份、数据提取、网络安全和通知图标策略。
9. 发送测试通知
标题:9. 发送测试通知使用 通知 > 测试发送 在 Capgo 中使用或从您的后端调用公共 API:
curl -X POST 'https://api.capgo.app/notifications/send' \ -H 'Content-Type: application/json' \ -H 'x-api-key: CAPGO_API_KEY' \ -d '{ "appId": "com.example.app", "target": { "externalId": "customer-user-123" }, "payload": { "title": "Hello from Capgo", "body": "This is a test notification.", "data": { "screen": "inbox" } } }'对于一个活动,创建它在控制台或调用 /notifications/campaigns,然后发送到一个外部ID,标签,分段或广播受众。
10. 设置徽章
标题为“10. 设置徽章”await CapgoNotifications.setBadge(4)await CapgoNotifications.incrementBadge()await CapgoNotifications.clearBadge()从您的后端:
curl -X POST 'https://api.capgo.app/notifications/badge' \ -H 'Content-Type: application/json' \ -H 'x-api-key: CAPGO_API_KEY' \ -d '{ "appId": "com.example.app", "target": { "externalId": "customer-user-123" }, "badge": 4 }'11. 启用静默更新检查
标题为“11. 启用静默更新检查”静默更新检查将这个插件与 @capgo/capacitor-updater.
在应用程序中:
await CapgoNotifications.enableUpdaterIntegration({ enabled: true, installMode: 'next',})在Capgo中,启用 推送更新到用户 在应用程序的通知设置中,然后从控制台或API发送一个更新检查:
curl -X POST 'https://api.capgo.app/notifications/update-check' \ -H 'Content-Type: application/json' \ -H 'x-api-key: CAPGO_API_KEY' \ -d '{ "appId": "com.example.app", "target": { "externalId": "customer-user-123" }, "installMode": "next" }'通知是静默的,使用折叠ID,因此重复的更新检查将在支持折叠行为的平台上替换彼此。
验证清单
标题为“验证清单”的部分- 应用程序在Capgo的预期收件人查找中出现
externalId. - 权限是
granted或用户已接受通知权限。 - 已注册的平台是
android或ios. registrationChangedCapacitor live-update- Capacitor live-update
notificationReceived. - Capacitor live-update
notificationOpened. - Capacitor live-update
- Capacitor live-update
runUpdateCheckCapacitor live-update
Capacitor live-update
Capacitor live-updateCapacitor live-update fires after a token refresh。 调试 在修改应用程序之前,code。大多数故障是由身份证明不匹配、平台凭据设置、操作系统权限状态、后台节流或应用程序/包 ID 不匹配引起的。