Questions tagged [mbaas]

MBaaS stands for mobile back-end as a service. This is a model for providing web and mobile app developers with a way to link their applications to back-end cloud storage and with other functionality.

MBaaS stands for mobile back-end as a service. This is a model for providing web and mobile app developers with a way to link their applications to back-end cloud storage and also providing features such as user management, push notifications, and integration with social networking services etc.

These services are provided via the use of custom software development kits (SDKs) and application programming interfaces (APIs). BaaS is a relatively recent development in cloud computing. MBaaS providers form a bridge between the front-end of an application and various cloud-based backends via a unified API and SDK.

117 questions
264
votes
12 answers

Separate dev and prod Firebase environment

I am considering using Firebase as MBaaS, however I couldn't find any reliable solution to the following problem: I would like to set up two separate Firebase environments, one for development and one for production, but I don't want to do a manual…
racs
  • 3,974
  • 2
  • 23
  • 26
8
votes
4 answers

CloudKit vs Parse

For an upcoming app of mine I need a backend. So the big question for me is: Cloudkit or Parse? Both are cross-plattform now ("CloudKit JS") which makes it even more difficult a question. Could some of you list the advantages / disadvantages of…
aljlue
  • 89
  • 4
4
votes
2 answers

End-to-end encrypted mobile backend as a service?

I'm thinking of using an MBaaS such as Firebase or Kinvey for my next app, and am wondering if any exist which encrypt application data end-to-end (i.e. such that the encryption keys are never shared with the service provider). This seems feasible…
Joel Dice
  • 121
  • 1
  • 6
4
votes
2 answers

Angular 2 MBAAS

I've been trying to find a MBAAS that works with Angular 2 (I'm using Ionic 2) for a few days now. Parse is shutting down so that's not really an option for me and the others I've tried (Firebase, Backendless etc.) don't seem to have an Angular 2…
Alex Bailey
  • 1,260
  • 12
  • 27
4
votes
1 answer

ParseUser.CurrentUser is not cached between sessions

I am developing a MonoGame app for Windows Phone 8. I am using the .Net SDK of Parse for my backend services. I login the user using ParseUser user = await ParseFacebookUtils.LogInAsync(browser, null); This redirects the app to the web browser for…
user123
  • 632
  • 1
  • 6
  • 22
3
votes
1 answer

How to handle google firebase web app security?

If I am using Firebase & Firestore with an Angular web app, how do I restrict access to my Firebase resources so that they’re not able to be accessed from outside of my Angular application? The primary vulnerability would seem to be that my…
3
votes
0 answers

gateway between JMS and mobile apps?

In general terms what's the most pragmatic approach towards creating a gateway between a JMS queue and, specifically, ios? Ideally, the iPhone app would simply listen to the queue, but that doesn't look to be an option. So, to make an event driven…
Thufir
  • 8,216
  • 28
  • 125
  • 273
3
votes
1 answer

Is Firebase suitable for real-time board game backend?

The game itself is not complex at all -a simple board game. But complexity comes from the fact that when 1 player makes a move, the opponent must get this information immediately. Obviously this is the responsibility of the backend. I plan to use…
sandalone
  • 41,141
  • 63
  • 222
  • 338
3
votes
3 answers

Does Bluemix support MBaaS (Mobile Backend as a Service)?

I am reading about and then trying to use IBM Bluemix. I have seen some confusing statement about MBaaS support on Bluemix. Some sites mention that Bluemix is a PaaS, and some places say it supports MBaaS. I have basic doubts: does IBM support…
user1953977
  • 163
  • 2
  • 12
3
votes
1 answer

firebase google or query support or any alternative solution

We have just started exploring firebase for our new app. The app basically needs chat between users and Group chat. For the chat application we are creating: MessageThread(id, User:userA, User:userB, UserGroup:group, Array:deletedBy, ...) The main…
iMemon
  • 1,095
  • 1
  • 12
  • 21
3
votes
1 answer

Use case for offline data storage keeping in sync with Parse backend

I am currently working on Parse integration for one of my iOS applications where in I need to pull some records (Customer Feedback from existing table) from Parse and show them in mob-app.With Parse iOS SDK 1.6.1 I realized that I could also use…
Rahul Sharma
  • 3,013
  • 1
  • 20
  • 47
2
votes
0 answers

firebase database connection hangs

Not clear to me how to troubleshoot firebase connectivity. As sure as I can be that the connection is established, but.. Does this show a connection? thufir@dur:~/NetBeansProjects/firebase$ thufir@dur:~/NetBeansProjects/firebase$ gradle…
Thufir
  • 8,216
  • 28
  • 125
  • 273
2
votes
1 answer

How to insert a document in MongoDB stitch with rule enabled on a field

I am trying the new MongoDb stitch but cannot work out with defining rules on fields. When I try to insert a document it collection with no rules on any Fields or only in Top level document it inserts fine. But as soon as I add a Field an write a…
2
votes
0 answers

Migrating away from Firebase to a SQL MBAAS on Android

Firebase is great as a real-time database that elegantly stays synchronised across devices but the lack of data aggregation, counting and filtering (like "Group By", "Count", "Where" etc. in SQL) is proving to be a major roadblock to further…
chdryra
  • 523
  • 5
  • 17
2
votes
1 answer

what is the difference between Syncano class and SyncanoDashboard?

What is the difference between Syncano class and SyncanoDashboard in declaration like that : SyncanoDashboard syncano = new SyncanoDashboard(API_KEY, INSTANCE_NAME); and Syncano syncano = new Syncano(API_KEY, INSTANCE_NAME); ??
1
2 3 4 5 6 7 8