主题不会保存在 Firebase 中

Topic Won#39;t Save in Firebase(主题不会保存在 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 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)