Questions tagged [cloudboost]

CloudBoost.io is the Complete Serverless Platform which does Data-Storage, Realtime, Search, Cache, Queues with one simple API.

CloudBoost is the Complete Serverless Platform for your app. Think of CloudBoost as Parse + Firebase + Algolia + Iron.io all combined into one :

  • Data-Storage / JSON Storage / BLOB Storage
  • 100% data ownership
  • Realtime
  • Search
  • Cache
  • Queues
  • More - ACL's, User Authentication, Server-less apps and more.
48 questions
8
votes
1 answer

How to set up cloudboost in android app with my own server?

I am new in cloud boost. I am using cloud boost in my android application for chat feature. We have integrated cloud boost SDK on our server. Now I want to use cloud boost in my android app with my server URL but I am not able to init CloupApp with…
Nivrutti Pawar
  • 514
  • 3
  • 17
7
votes
2 answers

Cloudboost. Beginner. How to display the query example?

This is the Cloudboost query example: var query = new CB.CloudQuery("Student"); query.equalTo('age', 21); //find all Students who age is 21 query.find({ success: function(list){ //list is an array of CloudObjects }, error: function(err) { //Error in…
Remzo
  • 103
  • 6
4
votes
1 answer

Typescript typings for cloudboost (and use it with ionic2)

I wonder about any available typings for cloudboost.io https://github.com/CloudBoost/JavaScriptSDK. I have no experience with writing typings for existing js modules. I was trying to prepare any dumbest d.ts but with no success. i.e. using ionic2…
ciekawy
  • 2,238
  • 22
  • 35
3
votes
0 answers

Get content length method (getContentLength()) of the URLConnection class returns negative 1 (-1)

Below is my AsyncTask to download a PDF file from CloudBoost database. The code works and downloads the file; however, what does not work is the progress bar update because the file length returned is -1. Can someone give me a tip on how I can…
jdubicki
  • 289
  • 1
  • 6
  • 21
3
votes
0 answers

How to register a new user using CloudBoost.io in Android

I am trying to use register a new user to CloudBoost and the docs show that this is how you register a new user: CloudUser user = new CloudUser(); user.set("username", "my_username"); user.set("password", "my_solid_password"); user.set("email",…
Alexiz Hernandez
  • 349
  • 1
  • 3
  • 13
3
votes
1 answer

Disable real-time on CloudBoost

I've seen that my cloudboost app is constantly doing this call: https://realtime.cloudboost.io/socket.io/?EIO=3&transport=polling&t=1455824292764-0 And this error is returned: [Error] Failed to load resource: A server with the specified hostname…
Gabriel Anglada
  • 191
  • 1
  • 8
2
votes
2 answers

Cannot delete CloudObject in CloudBoost

I've got this object: CB.CloudObject {document: Object, $$hashKey: "object:23"} document: Object ACL: CB.ACL _id: "tBaA9LXZ" _tableName: "Product" _type: "custom" _version: 2 category: Object …
Gabriel Anglada
  • 191
  • 1
  • 8
2
votes
1 answer

CloudBoost: undefined columns in CloudObject

I'm new to Cloudboost, and I was just wondering about one thing : Let's say I have 2 tables : one named Question'' and one named 'Answer'. 'Question' has a column named answers wich contains a list of 'Answer'. Why can't I read any of the…
1
vote
0 answers

Did not Find class "io.socket.client.IO". Android

Did not Find class "io.socket.client.IO". I am using CloudBoost to authenticating my app but it gives this error I also add socketio.jar but it does not work. The Exception is : 02-14 16:42:02.785 2811-2811/a52.puri.fbkunal.com.chat…
Kunal Puri
  • 185
  • 1
  • 9
1
vote
0 answers

Login provider with own login screen

I am developing a cordova application with CloudBoost and it requires own login page. I decided to use ng-cordova-oauth plugin to get the access_token from the providers. After getting the token, it is called the function to login the user in the…
1
vote
0 answers

Error message having no message . and data is not being updated

When executing the below code I get the following in my log 05-02 02:19:34.175 8796-8810/com.example.nitikamehta.testing I/System.out: io.cloudboost.CloudException public class MainActivity extends AppCompatActivity { @Override protected void…
1
vote
1 answer

How to find roles of a user in cloudboost

I am trying to get all the roles assigned to user when user logs in, using the code below. public class roles extends AsyncTask { @Override protected Void doInBackground(String... params) { final…
Kr Rakesh
  • 63
  • 8
1
vote
1 answer

How to add user to a role

I am trying to assign a role to a user in my signup function. by using below code: try { role.save(new CloudRoleCallback() { @Override public void done(CloudRole cloudRole, CloudException t) throws CloudException { …
Kr Rakesh
  • 63
  • 8
1
vote
1 answer

Cloudboost: Setting up a website

I'm trying to create a social site using cloudboost but I keep getting this error: WebSocket connection to 'wss://realtime.cloudboost.io/socket.io/?EIO=3&transport=websocket&sid=PUsvsrEipNM0t6BGAALX' failed: Connection closed before receiving a…
1
vote
1 answer

Cloudboost File url is null for Android Java

I am having a little problem getting all of the file info from my Cloudboost file object. Here is the code that I am using to get the id, name and url of the file. The problem is that I can get back the id and the name; however, the url is is null…
jdubicki
  • 289
  • 1
  • 6
  • 21
1
2 3 4