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
2
votes
1 answer

How to move database from Firebase to another server?

I am a beginner and I am going to implement an android application that use Firebase but i don't not know what if I want to move all my database to another server like Amazon Web Service ? is it possible and what type of database engine can I use…
Soha Gharib
  • 212
  • 3
  • 18
2
votes
1 answer

possible ways to implement push notification in firebase as parse

i am switching my app from parse to firebase (have to select firebase after checking out dozens of mbaas ) but as we all know firebase didn't handle push notification so what ways we have to implement push notification ,my app is based on…
remy boys
  • 2,928
  • 5
  • 36
  • 65
2
votes
2 answers

Do I have to trust the client when using DreamFactory for my backend?

I'm just looking into Dreamfactory, and it seems to me that all permission-logic is to be done by the client. I want to develop an app with documents, and not all users are allowed to edit all documents. If the logged in user has permissions to the…
Dag
  • 21
  • 2
2
votes
2 answers

BaaS for Google App Engine/J

There are lots of Backend-as-a-Server (BaaS) that are open source like: Usergrid BaasBox However I have not seen any that is made with GAE/J. I tried doing a quick port of Usergrid as it is the most mature open source BaaS I see. however it is…
quarks
  • 33,478
  • 73
  • 290
  • 513
1
vote
0 answers

Is there a front-end open source for Parse like "http://adminca.com/"?

In my company, our team needs an admin panel like adminca. Adminca is slow to connect in our country, so I want to build an "adminca" website using open source for just a few people in our team. Can you give me some advice?
1
vote
0 answers

Slow response from Parse server

Just started to use parse server (back4app) with php api and I'm curious why it is so slow in several cases.
arena
  • 233
  • 3
  • 15
1
vote
0 answers

What providers is better for mobile backend private API hosting?

I'm looking at creating a private API for my mobile app to interact with my postgres db. But I have no idea what hosting should I go for? I looked around and shortlist Amazon Mobile Hub, Backendless, and Built.io Which is better among the three?…
user8706644
  • 47
  • 1
  • 9
1
vote
0 answers

NullPointerException when loading serviceAccountKey.json

How do I load and parse the JSON file serviceAccountKey.json? thufir@doge:~/NetBeansProjects/mbaasFirebase$ thufir@doge:~/NetBeansProjects/mbaasFirebase$ gradle --stacktrace clean fatJar;java -jar build/libs/mbaasFirebase-all.jar BUILD SUCCESSFUL…
Thufir
  • 8,216
  • 28
  • 125
  • 273
1
vote
1 answer

How DatabaseReference#push() method differs from location to location?

When using Firebase Database I can generate a key using push() method of a DatabaseReference object as shown in the code snippets below: FirebaseDatabase.getInstance().getReference("/location").push().getKey(); or…
malhobayyeb
  • 2,725
  • 11
  • 57
  • 91
1
vote
1 answer

Firebase support on Authentication

I have been evaluating Firebase Mobile backend as service features, I doubt on a authentication support of it. Does Firebase MBaaS support "LTPA" authentication? I could see it supports oAuth anyway. Could anyone tried Firebase help me with your…
Stella
  • 1,728
  • 5
  • 41
  • 95
1
vote
0 answers

Updating a preloaded data structure in Firebase

I am building a Stock tracking/ordering/taking app on IOS with Swift. I want to populate the database with all the items in stock and the amount there is of it manually and not from the app itself. Then when an item is taken out of stock the amount…
Len_X
  • 825
  • 11
  • 29
1
vote
1 answer

Android Studio - Deleting Bulk Data From Backendless Data Table

I have a table called "LocalPhoneNum" in the Backendless Server. It contains three objects. Each with a name, phone number and email. All three of these objects have the same email. Here's what it looks like. I need to figure out how to delete all…
Mark F
  • 1,523
  • 3
  • 23
  • 41
1
vote
2 answers

Custom Modules in Kinvey

Inside a custom endpoint in Kinvey, I see the modules parameter which exposes inbuilt modules like so: function onRequest(request, response, modules) { } I could see from the documentation here that Kinvey has some existing inbuilt…
Harindaka
  • 4,658
  • 8
  • 43
  • 62
1
vote
1 answer

Unity3D and Microsoft Azure API App to serve json data

I'm trying to determine whether it is possible to create an Api app on Azure that can be consumed via HTTP requests on mobile devices with no Azure developed SDK on the client side.(No Unity SDK available and I do not want to use a third party…
CostelloNicho
  • 704
  • 1
  • 9
  • 20
1
vote
2 answers

Parse save always error

Parse.initialize(ApiKeys.appId, ApiKeys.jsKey, ApiKeys.masterKey); function submit(){ var GameScore = Parse.Object.extend("GameScore"); var gameScore = new GameScore(); gameScore.save({ …
tim
  • 1,454
  • 1
  • 25
  • 45