Topic Won#39;t Save in Firebase(主题不会保存在 Firebase 中)
问题描述
我正在尝试让用户订阅主题并将其保存在 Firebase 中.我遵循了 firebase.google.com 的指南,并在用户点击按钮时添加了以下代码:
I'm trying to let a user subscribe to a Topic and save it in Firebase. I've followed the guides from firebase.google.com and have added the following code when a user taps a button:
[[FIRMessaging messaging] subscribeToTopic:@"/topics/sampletopic"];
当我测试单击此按钮时,没有任何反应.我已经向 podfile 添加了必要的内容.我错过了什么?
Nothing happens though when I test clicking this button. I've added what is necessary to the podfile. What am I missing?
这甚至出现在 Firebase 的什么地方?在哪里可以看到我保存的主题?
edit: where does this even show up in Firebase? Where can I see my saved topics?
推荐答案
只要有订阅者,就会自动创建主题.但是,对于 FCM,它需要大约 24 小时才能在控制台中使用,以下帖子中也提到过:
A topic is created automatically so long that there is a subscriber. However, for FCM, it takes about 24 hours for it to be available in the console, as also mentioned in the following posts:
- https://stackoverflow.com/a/39371301/4625829
- 如何在 FCM 通知中创建主题
- https://stackoverflow.com/a/37848400/4625829
您可以在 Firebase 中发送新消息时查看它控制台,然后在目标部分中,选择主题.
You can view it when you are going to Send a New Message in the Firebase Console, then in the Target section, choose Topic.
这篇关于主题不会保存在 Firebase 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:主题不会保存在 Firebase 中
基础教程推荐
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
