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

Does anyone know what happened to the Parse.com documentation?

I'm building an app using Parse.com as my backend and am almost finished. I have been heavily reliant on the new Parse documentation throughout the process, but as of today all links to Parse documentation on all platforms simply link back to the…
James Hubert
  • 300
  • 3
  • 15
0
votes
1 answer

Is MBaaS specifically for Hybrid applications or can also used for Native Applications?

I am researching MBaaS (Mobile Backend as a Service) and what its purpose is, for school. So far I gathered that it is basically a resource that developers can use so they can create the back-end code one time, rather than separately for each device…
user6352003
0
votes
1 answer

How to increment a field in Backendless.com

Bellow is the overview of the table structure i have Table data ---------------------------------- - User - ---------------------------------- | objectId | name | password | ---------------------------------- |…
Tabby
  • 388
  • 1
  • 11
0
votes
1 answer

How to get Kinvey BAse64 Encoded values for Rest Authentication Header

When using Kinvey via Rest APIs, it is asking for a authentication header with two params seperated with space: First with Basic/Kinvey and second param is Base64 encoded string which I am assuming would be encoded string for my username:password or…
ajay
  • 886
  • 2
  • 12
  • 27
0
votes
1 answer

Kinvey: Does it provide access to Rest APIs in various ways

Kinvey allows to insert, delete or retrieve data via Model classes. But when we use normal rest APIs then we are free to send data in body or header of Rest APIs. Also we have various options like GET, PUT, POST, DELETE, etc. Does Kinvey provide…
ajay
  • 886
  • 2
  • 12
  • 27
0
votes
1 answer

BackEndless Data Managemet for Multiple Users

I'm using backendless.com as my backend service. My application has a data class (DataManager), which contains one String called chore. The first user (User A) checks off the chore that they did and it's saved to the Backendless service. An App…
Mark F
  • 1,523
  • 3
  • 23
  • 41
0
votes
1 answer

Website notifications

I have a web app that has native mobile versions. the app involves messaging that has been implemented. I can send and receive the messages no problem and the notifications are working on android. But i need to be able to notify the web user when a…
Lonergan6275
  • 1,938
  • 6
  • 32
  • 63
0
votes
1 answer

CloudBoost : Unable to log out (android / Java)

I tried logging out on my App using Android. I used the function logOut of the class CloudUser, but I ended up getting a Bad Request Response. This is how I call the logOut-Method CloudUserHelper.logOut(MainFreeDaysListActivity.this,…
0
votes
1 answer

Displaying data from back end service in table view

I am fetching data from a backend service that is returning message objects and i want to display the messages in a table view. the problem i am having is the re is a delay between when the view is loaded and when the data arrives. currently the…
Lonergan6275
  • 1,938
  • 6
  • 32
  • 63
0
votes
1 answer

The best approach to save kinvey object in Android

I would like to create an apps with backend service in kinvey. Previously i use Parse.com as my backend service, due to Parse.com is going to stop their service, so i need to consider another mbaas. i read many reference in internet like…
noleavename
  • 83
  • 3
  • 15
0
votes
0 answers

QuickBlox retrieve content with swift

I've been trying to retrieve contents from Quickblox, unfortunately nothing is showing. Here is code sample let page = QBGeneralResponsePage(currentPage: 1, perPage: 10) QBRequest.blobsForPage(page, successBlock: { (response :QBResponse, …
xhiza
  • 51
  • 1
  • 8
0
votes
1 answer

Saving a CloudObject : Bad Request Exception thrown

I began to use CloudBoost yesterday. In order to learn how to use it, i decide to save a sample Cloud object like this : try{ final CloudObject obj = new CloudObject("Truc"); obj.set("col",2); …
0
votes
1 answer

Using Firebase (iOS-Swift) for user's Read/Write data storage

I'd like to start using Firebase as my main BaaS now that Parse is closing. At the moment, Firebase's real-time capabilities are interesting and I see using them in the future, but for now I'd primarily like to use Firebase as a way to store a User…
bryken
  • 157
  • 3
  • 14
0
votes
1 answer

Autogenerate User with Kinvey

Using Kinvey is there a way to autogenerate users (like in this document: http://devcenter.kinvey.com/ios/guides/users#autogenerated) but for REST or AngularJS?
quarks
  • 33,478
  • 73
  • 290
  • 513
0
votes
1 answer

Cant create object in cloudboost using android studio

Getting text from a EditText Field. And attempting to set it to a new CloudObject. But Nothing happens when i click the Button. btnUpdteStts.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v)…