Is developing with App Maker restricted to accounts in the G Suite tenant where the App Maker apps were created?
Or have I missed a way to include external developers in the engineering process (eg. gmail accounts or other G Suite Orgs)?
It is true that only accounts in the domain can edit apps in the client domain, but developers can create apps or templates in a developer domain, export the app, then an admin can import the app into the client domain. It can then be maintained there, but only by client domain users.
Yes, only users in your G Suite domain can create and edit App Maker apps in your domain.
Related
So what Im trying to do is, create a central project that holds all auth credentials and base user information in Firestore. Then have other projects connect to that project to gain access to individual apps. An example of this would be the following:
Project A - Auth Project
Project B - App 1
Project C - App 2
Project B Authentication -> Project A Authenticate And Give Project B Firestore User Object
Project C Authentication -> Project A Authenticate And Give Project C Firestore User Object
Anyone have any idea how I can do this? I have an idea that I may be able to do it with Firebase functions but can I also do it from the frontend such as from an iOS app? Would that require two Firebase Config files? If so how do I differentiate between the two of them in the iOS app?
A little more context on this. I am finished creating my first app. I am beginning to create an app that is completely different from the first app but I need my users to be able to share credentials across both apps. So my plan is to create a single project that holds the master user record and authenticates users from both of the other projects. Does this make sense? Also users will only authenticate using email/password combo, nothing else.
Any help would be greatly appreciated. Thanks.
You can check these official documentation on how to configure multi projects and understanding the firestore app and projects in detailAs,any Firebase project is governed by the Firestore security rules basically implement the security model which does refuse data or accounts outside of the project where they were deployed.You can try to implement with some backend API which can communicate between the two systems maintaining these security constraints.Also,If you want users from project B and project C to share credentials which have been authenticated in project A and you can let the user authenticate with the same UID with a "parallel" account in the second project rules on B would still be limited to the app and data for the immediate project and would not be able to access anything directly into other one.
I recommend you to check the following examples for the similar approach:
Use Firebase auth data and users for multiple project and apps
Single firebase project for multiple GCP projects
Implementing cross project user authentication
I am trying to turn on Google App Maker for our G-Suite business. Within the Google admin console, I navigate to Apps then Additional Google services. In the list I don't see a row for Google App Maker.
Is App Maker limited release or something?
Are you sure your G Suite level is really Business and not Basic? App Maker is only available in Business and Enterprise pricing plans.
App Maker is already available for all G Suite Business and Enterprise editions. It's listed as App Maker and not Google App Maker, so it should be at the top of the Additional Google Services page if you are sorting in ascending order.
It should be default ON so try to access at appmaker.google.com
If you just upgraded to G Suite Business, allow at least 24 h for all new services to become available. If you still can't find App Maker, contact support.
I would like to generate an app with app maker that wiil be available as a saas product for any internet user. Is that possible?
Sharon
Nope, it is not possible. You can find more details in App Maker documentation:
https://developers.google.com/appmaker/deployment#application_publishing
I am using GoolgeFirebase for my android application. I want to make an admin portal at GoogleFirebase connected to that application's database to view some admin related tasks, like showing waiters with rating where i have all the wiaters and rating data stored in Google Firebase Realtime Database.
Do i have to create a web app, connected and hosted at the Google Firebase or the GoogleFirebase facilitate itslef for creating some admin portal for the android app.
You have to build something. A web app using firebase hosting is really easy but you can host it anywhere you want including on your own PC. Of course you can also build any kind of app using one of the SDKs or anything that can do HTTPS requests. An special admin android app is an option. Java desktop GUI app may be to your liking.
Sometimes I find building a commandline tool in node.js is perfect for my needs. The command line lets me pipe the output to other tools that are helpful.
Firebase provides a number of Admin SDKs to help build server-side or desktop applications. As of now there are Admin SDKs available for Node.js, Java and Python (although the Python SDK is new and doesn't have realtime DB support yet). You can use one of these SDKs to build your admin portal webapp.
I am looking at building a LinkedIn application and i am a little bit flustered because of the paucity of Information out there. Here are things i need to know:
1)
Is there any LinkedIn AppStore or a central place where i can test out applications? The link i could find is http://www.linkedin.com/static?key=application_directory but i dont want to believe there is only 18 Applications on the LinkedIn platform
2)
How do i host or integrate my Application into LinkedIn. The only option i can see when it comes to using LinkedIn API is to have the application on your domain and call the API from your APP. But is there a possibility of having the Application have a linkedIn domain? like we have on Facebook?
Thanks
Those applications you link are indeed the only ones that have been approved for use on the LinkedIn.com site - there is no open development system to build apps on LinkedIn.
To build applications against the LinkedIn platform, you would use the JavaScript or REST APIs, and you would need to host the application on your own domain.