How to combine two flutter projects using firebase? [closed] - firebase

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 3 years ago.
Improve this question
I have designed a booking page using flutter and firebase. I used Cloud firestore to store all the details of the users. Now i a need separate admin app to receive the data and modify it.how can i combine my firebase project with the admin app.

You can have multiple apps added to your Firebase project.
You can also use Custom Claims to grant some of your users some additional claims which then you can use in scurity rules. In this way you can make some account have admin-like permissions.

Related

Can I use Firebase Admin SDK for SSG in my Next.js app? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 days ago.
This post was edited and submitted for review 2 days ago.
Improve this question
I'm building an app using Next.js for the frontend and Firebase for the backend. I'm interested in using SSG to fetch data server-side for my pages.
Firebase provides a handy client-side package, but since getServerSideProps runs server-side, I can't use the client-side library for data fetching, as it doesn't have access to the user session.
Is it possible to use the Firebase Admin SDK to fetch data for my pages within Next.js's getServerSideProps function?

Web api key is not generated in firebase while creating a new project as stated on the documentation [closed]

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 2 years ago.
Improve this question
On the Firebase documentation, it states that the web API key will be auto-generated when:
Firebase will automatically create a new web API key for your project when you do
any of the following:
Create a Firebase project > Browser key auto-created.
Create a Firebase> iOS App > iOS key auto-created.
Create a Firebase Android App > Android > key auto-created.
I have tried creating a new Firebase project as stated, but the web API key is not being generated.
UPDATE: The answer to the question is in the comments. ("It gets generated once you go into the "Authentication" section for the first time")

Integrate Firebase web chat seamlessly with an existing application [closed]

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 Firebase web chat in an existing web application. The integration has to be seamless . I would not like to store the username and password of a user in the Firestore database. Can this be done? If yes, then how?
All Firebase products are fully hosted services. While some of them have local emulators, they can currently not be run locally to receive traffic from published apps.

What kind of data is stored in google-services.json file (please discuss in detail) [closed]

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 4 years ago.
Improve this question
I want to know that what are the data stored in google-services.json file on firebase in brief and all the possible links and every kind of information are welcomed. It's just for getting to know about the json file in firebase and android. What I want is the details about the things present inside the google-services.json file
Firebase manages all of your API settings and credentials through a single configuration file.
The file is named google-services.json on Android and GoogleService-Info.plist on iOS.
GoogleService-Info.plist contains developer credentials and configuration settings, which is needed to verify while connecting with GoogleApiClient and also having a configuration for a different account like Analytics, Sign in, GCM and also contain bundle id related to project.

Firebase cloud messaging (FCM) Admin - is it okay to store the service account API keys in the local storage [closed]

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 4 years ago.
Improve this question
Is it secure to simply save it in the local storage along with my project files? Or is it safer to store them as environment variables?
I would in general advice against saving and pushing credential files into a repository for others to see.
You may consider encrypting you credential file. Everyone who has to work with the project then has to decrypt it first and you have control who receives the access to it.
Have a look Googles KMS: https://codelabs.developers.google.com/codelabs/cloud-encrypt-with-kms/index.html#0

Resources