我可以在不使用 Google Beacon 平台注册我的 beacon 的情况下使用 Nearby Notification API 吗?
Can I use Nearby Notification API without registering my beacon with Google Beacon Platform?
我想在信标附近时向用户推送通知。如果我使用 Proximity Beacon API 在 Google Beacon 平台上注册我的信标,然后针对它注册 Nearby Notification,那将非常容易。我不想在 Google Beacon Platform 上注册 beacon 并仍然通过 Nearby Notification API.
向用户发送通知
如果你想Google附近被信标触发,你别无选择,只能在Google信标平台上注册信标 .这就是它的工作原理。 Nearby 是一个依赖服务器端配置向用户发送消息的系统。
也就是说,可以在用户遇到您的信标时向他们发送定期 Android 通知,而无需在 Google 信标平台上注册。为此,您必须在用户 phone 上安装自己的自定义应用程序。
您可以查看如何使用 Android Beacon Library in the "Getting Notified When Beacons Appear in the Area" section of this page. A more sophisticated example that scans in the background and sends a notification to the lock screen on beacon detection is in the library's reference app.
执行此操作的示例
我想在信标附近时向用户推送通知。如果我使用 Proximity Beacon API 在 Google Beacon 平台上注册我的信标,然后针对它注册 Nearby Notification,那将非常容易。我不想在 Google Beacon Platform 上注册 beacon 并仍然通过 Nearby Notification API.
向用户发送通知如果你想Google附近被信标触发,你别无选择,只能在Google信标平台上注册信标 .这就是它的工作原理。 Nearby 是一个依赖服务器端配置向用户发送消息的系统。
也就是说,可以在用户遇到您的信标时向他们发送定期 Android 通知,而无需在 Google 信标平台上注册。为此,您必须在用户 phone 上安装自己的自定义应用程序。
您可以查看如何使用 Android Beacon Library in the "Getting Notified When Beacons Appear in the Area" section of this page. A more sophisticated example that scans in the background and sends a notification to the lock screen on beacon detection is in the library's reference app.
执行此操作的示例