Questions tagged [baasbox]

BaasBox is an Open Source project that aims to provide a general purpose back end for mobile and web apps

Baasbox make you to Build your app in minutes. No vendor lock-in Deploy BaasBox anywhere you like with SDKs for iOS, Android and Javascript

The coolest thing in this new 0.8.2 release is the enhancement of the iOS SDKs, now we support to login with Facebook and G+. Furthermore we concentrated on fixing bugs and improving the embedded console.

For more Info: http://www.baasbox.com/features/

31 questions
51
votes
6 answers

How to get an specific header value from the HttpResponseMessage

I'm making an HTTP call. My response contains a session code X-BB-SESSION in the header section of the HttpResponseMessage object. How do I get that specific header value? I am using a foreach statement to iterate through all the headers (MSDN…
MikePR
  • 2,104
  • 4
  • 22
  • 52
3
votes
1 answer

Loopback ValidationError: The `Role` instance is not valid. Details: `name` already exists (value: "admin")

I'm new to loopback, however I followed the steps to install and scaffold my folder (loopback-server), inside server/boot/ I created one file script.js and included the following code: module.exports = function(app) { var MongoDB =…
shireef khatab
  • 907
  • 1
  • 12
  • 29
1
vote
0 answers

How to use BAASBOX to send iOS push notifications badge number

I am trying to send a push notification from one iOS device to another using the BAASBOX service. This is the code I am currently using: BAAClient.sharedClient().postPath("push/message", parameters: ["message":"\(currentUser) followed…
1
vote
0 answers

BaasBox: How do I get a document that is stored in my Baasbox dashboard and set them in a ListView in my app

I am a new user baasbox, and now, I have some problems that how I get one document that is stored in my dashboard and set them in a ListView in my app, I have already read the Documentation of BaasBox, but there don't have one full code to I base my…
1
vote
1 answer

Error reading file: java.io.FileNotFoundException: open failed: ENOENT (No such file or directory)

I need to pick a image from my gallery and put on my baasbox server. To do this,I need a InputStream of my image. BaasBox Docs report this: InputStream data = ...; // input stream to upload BaasFile file = new BaasFile(); file.upload(data, new…
minimanimo
  • 35
  • 1
  • 2
  • 8
1
vote
1 answer

RidNotFoundException in Baasbox Server

I started receiving RidNotFoundException a few days back.I can find the documents in the baasbox admin panel . But when I search them through api it says RidNotFoundException. When I tried to take a database backup it showed error and said some…
1
vote
1 answer

How good BaasBox is with IonicFramework?

I am trying to build a realtime data app,it tried with firebase and it works very smoothly,but its too costly to scale up. I found BaasBox,please suggest me how its easy and good to use for the Realtime data app. Is there documentations and supports…
amoeba
  • 512
  • 5
  • 22
1
vote
1 answer

Does Baasbox encrypt communication?

I am moving all my stuff from Parse.com for many reasons. Parse had a point-to-point encryption between server and client. Does anyone know if Baasbox has the same or the passwords are travelling in plain text?
Teddy
  • 967
  • 1
  • 10
  • 21
1
vote
2 answers

OrientDB: containsall operator

I have collection of documents. Document have a field which value is an array of maps (for example: map with one field name). Structure is like that: { arrayfield: [ { name: "value1", }, { name: "value2", } ] } I…
bartl
  • 383
  • 1
  • 11
1
vote
2 answers

Swift Project Doesn't Recognize CocoaPod Library

I created a Page-based project and immediately created a Podfile in the root of the project with the following content: source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' use_frameworks! pod 'BaasBoxSDK', '~> 0.9' I then ran pod…
Benny
  • 3,759
  • 6
  • 42
  • 81
1
vote
1 answer

NoSQL statistics type query with BaasBox - OrientDB 1.7.10

I'm trying out BaasBox v0.9.2 which ships with OrientDB 1.7.10 for a proof of concept web app I want to build. Premise is fairly simple and adding/querying is very straight forward and simple for single collections. What I'm having difficulty trying…
Andrew Grothe
  • 2,342
  • 1
  • 31
  • 42
1
vote
1 answer

Baasbox and Javascript

I'm trying BaaSbox, a free Backend as a Service. But it has no out-of-the-box Javascript support I can use right away (yet, only iOS and Android) I'm having trouble sending the right curl command from javascript, anyone happen to know a good…
TrySpace
  • 1,875
  • 8
  • 26
  • 57
0
votes
1 answer

Querying users with Baasbox API

I am trying to retrieve a filtered list of users using the REST API interface on BAASBOX. Within the visibleToRegisteredUsers field I have a field called company and want to filter on that. The URL I am using to filter is:…
Tony Goodchild
  • 189
  • 1
  • 1
  • 10
0
votes
0 answers

BaasBox Upload an image from C#

I am trying to upload a picture to BaasBox in C#/Xamarin. So far I only get Bad Request errors: WebRequest request = WebRequest.Create("http://localhost:9000/file"); request.ContentType = "Content-type: image/jpg"; …
Thommy
  • 4,644
  • 2
  • 23
  • 43
0
votes
1 answer

baasbox save document on android API

I am having the following nasty stack trace java.lang.RuntimeException: java.lang.reflect.InvocationTargetException at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120) Caused by: java.lang.reflect.InvocationTargetException at…
Alberto
  • 1
  • 1
1
2 3