Questions tagged [syncano]

Syncano is the first Data-as-a-Service (DaaS) platform, making it simple for front-end developers to build real-time synchronized apps by connecting to data anywhere, anytime."

Syncano is a serverless application platform to build powerful real-time apps more efficiently. Integrate with any API, minimize boilerplate code and control your data - all from one place.

25 questions
6
votes
1 answer

Syncano Codebox - Call API - parse JSON - get Reference - Save new Objects

I am using Syncano as a baas, where I am trying to call an external API to receive a JSON array. This JSON needs to be parsed and afterwards stored in syncano. Before that I need to receive the reference object from the DB to link it to the new team…
Burkart
  • 103
  • 10
4
votes
1 answer

Saving data to Syncano Angular app

I've followed the tutorial at http://docs.syncano.io/docs/angularjs but it only shows how to list class data from syncano. syncano.class('CLASS').dataobject().list() .then(function (res) { $scope.items = res.objects; }) .catch(function (err) { …
philip_nunoo
  • 920
  • 3
  • 10
  • 21
4
votes
1 answer

Android - Syncano SDK not working

I am developing an android application that uses syncano to send data to a syncano server but the data refuses to send. We have verified that the conditions for our send work, but it does not work. Here is the activity that is used to send the…
4
votes
2 answers

Syncano v4 Error: "You do not have permission to perform this action"

Using the Syncano v4 Python Library, I attempted to do the following: book_class = instance.classes.create( name='book', schema='[{"name": "title", "type": "string"}, {"name": "author", "type": "string"}]’ ) And received this…
Kelly J Andrews
  • 5,083
  • 1
  • 19
  • 32
2
votes
1 answer

I am creating objecting in the classes of a instance at "Syncano' . I am reveiving this ReferenceError: callback is not defined

Here's the error log ReferenceError: callback is not defined at Object. (C:\Users\Username\Desktop\JsGame-master\APP.JS:137:45) at Module._compile (module.js:413:34) at Object.Module._extensions..js (module.js:422:10) at Module.load…
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); ??
2
votes
1 answer

How to get and add to Syncano reference to user_profile

as in the title I have problem how adds to syncano reference to user_profile, If someone could tell me a hint? So this is my code: func saveName() { let Uerextra = userextra() Uerextra.name = (self.dict.objectForKey("first_name") as?…
Namedix
  • 39
  • 6
2
votes
1 answer

Trying to save user info to parse alternative Syncano with swift

I'm super stuck on this because the Syncano docs aren't great at explaining... I'm building a simple chat app with Syncano backend (R.I.P Parse) and all I want to do is save the First Name, Last Name, and a unique username which they can pick. I…
AJ McCaw
  • 23
  • 2
2
votes
1 answer

Syncano "403 You do not have permission to perform this action" while querying DataObject

I'm trying to query DataObjects in a class. I'm using the "Try It" form at the bottom of the Data Object - List documentation, but I get a 403 "You do not have permission to perform this action" response. I'm providing the API Key, Instance Name,…
Rick
  • 3,298
  • 3
  • 29
  • 47
2
votes
1 answer

Syncano Android SDK - adding user to group

Syncano docs specifies that adding user to group is done by: Response response = syncano.addUserToGroup(group.getId(), user.getId()).send(); But I don't see method 'addUserToGroup' in latest version (4.0.6). What is new way of…
Michał Tajchert
  • 10,333
  • 4
  • 30
  • 47
2
votes
1 answer

Syncano - get Objects with reference to particular UserProfile

I have a class of "work" objects - all have relation to UserProfile class. I want to query for Work objects that are related to local user. That is why I do: Where where = new Where<>(); where.eq(Work.FIELD_USERIDID, UserProfile.FIELD_ID,…
Michał Tajchert
  • 10,333
  • 4
  • 30
  • 47
2
votes
1 answer

Syncano Android Social Login with custom class results in error

Social Login in Syncano doesn't work with custom profile. I use SocialAuthBackend.FACEBOOKand pass a token with custom class such as: @SyncanoClass(name = "user_profile") public class UserProfile extends AbstractUser { } together…
Michał Tajchert
  • 10,333
  • 4
  • 30
  • 47
2
votes
1 answer

What should callbacks look like in Syncano when using Node.js?

Does anyone have an example of what a callback should look like in Node.js for Syncano? I've got an attempt within a CodeBox to retrieve my content within a class called "affirmations" but it doesn't seem to run my callback function. The console.log…
2
votes
1 answer

Syncano User Management Profile Update Error

I tried to implement a user sign up for my app using the Syncano User Management system. I was able to successfully create a new user using the following JS Library code: var sync = new Syncano({ apiKey: 'API_KEY', instance: 'INSTANCE'…
1
vote
0 answers

Handlers with Syncano requests

I am using Syncano as in my chat application. Currently I am retrieving contact list stored on Syncano to populate my contact list screen. But due to varying delays in the response, sometimes the screen is drawn with no contacts. Is there a handler…
Abuzaid
  • 853
  • 8
  • 28
1
2