firebase-console

How to create a folder in Firebase Storage?

夙愿已清 提交于 2019-11-30 17:40:21
So the new Firebase has support for storage using Google Cloud Platform. You can upload a file to the images folder using: var uploadTask = storageRef.child('images').put(file, metadata); What if you want to create a subfolder images/user1234 dynamically using code? The offical sample does not show how to do that, nor the official guide or reference docs . Is the Firebase Console the only place where folders can be created manually ? The Firebase Console does allow you to create a folder, since it's the easiest way to add files to a specific folder there. But there is no public API to create a

How do I change the Support Email of a Firebase Project?

你。 提交于 2019-11-30 14:42:11
问题 How can I change the support email in my Firebase project under Settings > Your project > Public settings > Support email ? 回答1: That setting doesn't show for all project it seems. But when I found it, hovering over the ? says: This will be the email address presented to users when they are authenticating with Google. It can be changed to your signed-in email or an email of a Google Group managed by you. So it looks like you'll need to: Create an email or google group (possibly on your own

How to get all topics list of Firebase through API? [duplicate]

…衆ロ難τιáo~ 提交于 2019-11-30 13:44:37
This question already has an answer here: Get all subscribed topics from firebase cloud messaging 1 answer I want to retrieve all the topics created so far via API request, similar to the list that firebase console display. See the image attached. There is no public API to get the list of topics for Firebase Cloud Messaging I just copy Answer from same question here becuase this page is first result in google: Get all subscribed topics from firebase cloud messaging you can do it through a GET request HTTP GET Request https://iid.googleapis.com/iid/info/<TOKEN>?details=true Content-Type

How do I change the Support Email of a Firebase Project?

时光怂恿深爱的人放手 提交于 2019-11-30 11:30:57
How can I change the support email in my Firebase project under Settings > Your project > Public settings > Support email ? That setting doesn't show for all project it seems. But when I found it, hovering over the ? says: This will be the email address presented to users when they are authenticating with Google. It can be changed to your signed-in email or an email of a Google Group managed by you. So it looks like you'll need to: Create an email or google group (possibly on your own domain). Add it as a collaborator. Sign in as that collaborator. Select that email address. Step 3 might not

Send silent push notification from Firebase console

两盒软妹~` 提交于 2019-11-30 09:15:21
Trying to prove a concept I've been working on for a while, which involves my app recieving a silent notification. I am using Firebase Cloud Messaging as it has less overhead than native APNs for the developer. I know FCM supports silent notifications when you build the payload yourself on your own backend, which is of course my intention. However, I want to make sure I can do what I want to do with this notification, and therefore want to prove it using the FCM console before I spend time writing my backend. I have managed to send standard notifications from here, but not silent ones. Even

Why are non auto-generated document Ids are in italics in Firestore console?

China☆狼群 提交于 2019-11-30 01:55:01
问题 When i add a document with my own document Id (not auto generated), document Id node is in italics as shown in the screenshot from Firestore console. What is the reason behind this? My code to add data is const billingRef = db .collection('billing/test/2017/months/11') .doc(); billingRef .set({ name: 'ABC' }) .then(_ => { console.log('saved'); }) .catch(err => { console.log(err); }); Above code adds a node successfully, but adds node "test" and "months" in italics. screenshot 1 screenshot 2

How to get all topics list of Firebase through API? [duplicate]

随声附和 提交于 2019-11-29 18:29:41
问题 This question already has an answer here: Get all subscribed topics from firebase cloud messaging 1 answer I want to retrieve all the topics created so far via API request, similar to the list that firebase console display. See the image attached. 回答1: There is no public API to get the list of topics for Firebase Cloud Messaging 回答2: I just copy Answer from same question here becuase this page is first result in google: Get all subscribed topics from firebase cloud messaging you can do it

Firebase: Dashboard / Audiences probable bug?

这一生的挚爱 提交于 2019-11-29 17:18:36
Ok I'm pretty new to firebase and analytics but I'm seeing some kind of incongruency between what the dashboard is showing me and what the Audiences tab shows me. Dashboard: and the Audiences (predefined Audience All Users): Any ideas if I'm looking at this the wrong way or if it's just a bug? Thanks!! The threshold of 10 is actually based on Advertising Identifiers (and not Analytics "users"). And so, if your set of 13 Monthly Active Users has fewer than 10 Advertising Identifiers among them (for example, if you just uninstalled/re-installed 13 times on one device), the report will still not

Send silent push notification from Firebase console

≯℡__Kan透↙ 提交于 2019-11-29 14:14:11
问题 Trying to prove a concept I've been working on for a while, which involves my app recieving a silent notification. I am using Firebase Cloud Messaging as it has less overhead than native APNs for the developer. I know FCM supports silent notifications when you build the payload yourself on your own backend, which is of course my intention. However, I want to make sure I can do what I want to do with this notification, and therefore want to prove it using the FCM console before I spend time

How to add Firebase custom events for analytics?

拜拜、爱过 提交于 2019-11-29 09:12:04
I've seen some questions and answers about custom events for firebase analytics, but i just wanted to ask you a straight question so you can give me a straight answer :) So, this is my method for logging: @Override public void logFeatureSelectedEvent(String categoryName, String actionName, String labelName) { Bundle bundle = new Bundle(); bundle.putString(EventTrackingKeys.EventTypes.CATEGORY, categoryName); bundle.putString(EventTrackingKeys.EventTypes.ACTION, actionName); bundle.putString(EventTrackingKeys.EventTypes.LABEL, labelName); mFirebaseAnalytics.logEvent(EventTrackingKeys