Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I've just started using Firebase to create a web app.
More and more I get the feeling that Firebase is targeting mobile app developers, not web. Yes, they have a Web SDK, but there is so much that is only available for iOS / Android, such as:
Analytics
Notifications
Remote Config
Adwords
Test Lab
Anyone care to shed some light?
Yes, basically Google Analytics was not made for tracking mobile analytics as it is web centric. Firebase started their analytics development around the mobile platform and then Google acquired it. Everything in the mobile is event based, this is the driving force for Firebase analytics.
So, if you are using a web application it is better to use the Google Analytics which is web centric to get the clear and comprehensive web based analytics data.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Is it possible to create a website like Alibaba with Firebase? if so, what languages or technologies should I use.
I know HTML, CSS, JavaScript and PHP
I think this is a very broad question, however, the official Firebase Quickstart Samples for Web is a really good place to start.
You can use several Firebase services such as:
Firebase Hosting which provides fast and secure hosting for your web app, static and dynamic content, and microservices.
Firebase Authentication which provides backend services, easy-to-use SDKs, and ready-made UI libraries to authenticate users to your app. It supports authentication using passwords, phone numbers, popular federated identity providers like Google, Facebook and Twitter, and more.
Cloud Storage for Firebase to store and serve user-generated content, such as photos or videos.
Realtime Database or Cloud Firestore to store extra data. Be sure to check the documentation about choosing the correct database for you.
Firebase guides are also a good place to find very well explained examples. Good luck!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I need to integrate my Flutter web app with Firebase. I found information, but it is all about Flutter for mobile apps and I need it for Flutter for web.
Flutter web is currently in a preview phase, which means that it "does not have a plugin system yet.".
Issues on GitHub about this have already been opened. Consider this one.
The alternative it proposes for now is to use the Dart web version of Firebase.
For more information you should consider reading through the issues on GitHub.
This should help you to get started for now.
The FlutterFire library wraps the native Firebase SDKs for iOS and Android, and is not available for the Flutter for the Web at the moment.
There is however a community library firebase-dart that wraps some of the Firebase products for Dart/Web users. From recent commits it seems that this library may be compatible with Flutter for the Web.
Integrate Flutter project with Firebase:
Step 1: Firebase Setup. Visit Firebase official site Here. Click on GO TO CONSOLE.
Step 2: Add App to Project.
Step 2.1: Integrate Firebase into iOS. Open your Flutter project. ...
Step 2.2: Integrate Firebase into Android. The easiest way to get the Android App Id is navigate to the build.gradle file.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I am trying to use Firebase A/B Testing for website variants. I have a doubt that does Firebase A/B Testing support for React.JS page as well? A/B Testing solutions can work for initial page load, but not when React like pages doesn't get refreshed. React JS page makes every user interaction to prompt for each UI elements refresh, which causes to erase any modifications done by A/B testing solution.
But, Some of A/B testing vendors such as Optimizely and Adobe are supporting A/B Testing support for React.JS page as well.
firebaser here
Firebase A/B Testing is available for Android and iOS. It is not available for web apps, so won't work in a ReactJS web app.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I am having hard times figuring out how to create a JIRA webhook that creates a google calendar event after an ISSUE has been created in JIRA.
Start and end times of this event should be taken from custom fields in that created Issue.
Thanks in advance.
You may refer with this documentation. You will need to:
Create and Configure your Jira Web Hook
https://developer.atlassian.com/display/JIRADEV/JIRA+Webhooks+Overview
Create a Google API Server-Side app
https://developers.google.com/drive/web/auth/web-server
Enable and set Google Calendar Scope
https://developers.google.com/drive/web/scopes
Generate a OAuth2 Certificated Key (.p12) file
https://developers.google.com/accounts/docs/OAuth2ServiceAccount
Get your Service Account Name for your Project from Developer Console
https://console.developers.google.com/project
You may also check this tutorial: Google Calendar and Jira Integration
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
How do I do my business logic on server-side on firebase?
Will the web app still have the benefits of progressive web app if I do this?
Reason to do this: Anybody can run Javascript code on your website if the person knows how to use the developer tools available in modern browsers.
Is firebase Queue (NodeJS on AWS) the way? I am a noob to all this.
You need to write more of your business logic on font-side than traditional way. To make it safe, you need to write access rules carefully on firebase console.
And it's not enough, you also need a server-side, nodejs is a good choice, there are many useful library, such as firebase, firebase-queue, firebase-admin. You can deploy these servers on the google cloud with docker.