Questions tagged [kinvey]

Kinvey is a Backend as a Service platform for mobile and web apps.

Kinvey is a commercial cloud platform to provide Backend for mobile, tablet and web apps. Some of it's features are:

  • Free services for small applications
  • Cross-platform with support for iOS, Android, HTML 5, and a few others
  • 3rd party integration
  • Data and large-file storage
  • Versioning

More info:

196 questions
1
vote
1 answer

Kinvey shows 401 Unauthorized when I try to fetch data

I am using Kinvey with Backbone JS. When I do a fetch, with Users, Kinvey shows a 401 authorization error. I am not sure how to make the GET request but this is what I have tried so far: var Users = Backbone.Collection.extend({ url:…
user3766332
  • 319
  • 1
  • 5
  • 17
1
vote
0 answers

JSON UserData format for BaaS Kinvey SignupUser

Using TBackEndUsers mBaaS component, in order to populate the _push column of new Kinvey user, I have to pass JSONObject UserData to the procedure: BackendUsers1->Users->SignupUser(AUserName, AUserData, AUserData, ACreatedObject); Here is the piece…
Giovanni
  • 89
  • 1
  • 8
1
vote
1 answer

how onsuccess method of kinvey client call can be synchronize

I am developing an app using Kinvey as backend. The problem i am getting is that when i call a kinvey appData request then the control don't go into onsuccess method of kinvey call and return back to the calling method place. Here is my main class…
Fahid Nadeem
  • 412
  • 2
  • 7
  • 19
1
vote
2 answers

How to Get "_id" field value from kinvey.com

I been using kinvey.com, and every time I try to get Manga._id it returns null. Can you help me figure out why? TManga = class strict private FSite, FManga, FID: String; published property Site : string read FSite …
1
vote
0 answers

iphone sdk: NSCFString does not match with value

I am using Kinvey Kit in one of my apps. While using query +(KCSQuery *)queryOnField:(NSString *)field withExactMatchForValue:(NSObject *)value, I try matching record with KCSUser userId. It does not match by using self.userId but if I do…
Saira
  • 65
  • 5
1
vote
2 answers

Upload image to Kinvey with Angular

Im trying to add photo uploading to individual accounts that are already set up in a collection in Kinvey. I've been messing around with it most of the day and can't figure it out. Anyone have any suggestions on how I should set this…
user3646131
1
vote
0 answers

Offline Appdata sync in Kinvey Android

EDIT I got it done as I was just missing out the kinvey.properties file which includes the app_key % app_secret key. I'm trying to use the Offline Appdata (ONLINE_FIRST Policy) feature on Kinvey Android TestDrive App. The app directly saves the data…
Rahul
  • 47
  • 8
1
vote
1 answer

Kinvey: Get recently saved entities from AppData while offline?

I followed this guide on the Kinvey website and now have something this in my MainActivity: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); …
Steffen
  • 2,197
  • 2
  • 24
  • 38
1
vote
1 answer

Kinvey Business logic - example of saving new object on Collections (Javascript)

i need help with Kinvey Business logic. I want to save a new object using javascript in Business login(back-end side) but I can't find an example nowhere. I tried this, but doesn't work: var model = new Kinvey.Backbone.Model({}, { …
Borbea
  • 412
  • 6
  • 12
1
vote
1 answer

504 error accessing Kinvey handshake(Rest api)

I have been trying to get the Kinvey handshake for the REST api to work for a while now but have not had any luck. I am using libgdx's net class to send the http request. Wverytime I send the request I get a 504(Gateway Timeout) error. I am…
eBehbahani
  • 1,579
  • 5
  • 19
  • 41
1
vote
1 answer

How can I tell if Cache/Offline was used with Kinvey for Android

I'm following the instructions on the Kinvey Android Caching and Offline guide. I have just changed one instance of an AsyncAppData object to use the CACHEFIRST cache policy with an InMemoryLRUCache and the LOCAL_FIRST offline policy with a…
Dan
  • 125
  • 6
1
vote
2 answers

All of a sudden: -[__NSArrayM popObjectForKey:]: unrecognized selector sent to instance

I was developing an app, at some stage this error came out: -[__NSArrayM popObjectForKey:]: unrecognized selector sent to instance I've undone the latest edits to see what was wrong...but the error was still there. So I've undone even more edits,…
BkdD
  • 593
  • 1
  • 7
  • 13
1
vote
1 answer

Deserializing a custom class with Gson and Kinvey on Android

I am using the Kinvey Android SDK to retrieve data from their backend. It uses Gson behind the scenes. I have been unable to get it to deserialize an array of custom objects. Here is the entity definition and the JSON in question: public class…
Jason Kelly
  • 82
  • 1
  • 9
1
vote
0 answers

Fetching data from Kinvey backend

I am using kinvey as my backend where I have a collection and would like to fetch data using appData.get. I have tried using the code below but it doesnt work. Could someone please tell me whats wrong with it. package com.example.kinvey; import…
Marie
  • 21
  • 2
1
vote
1 answer

Using Kinvey.Social to login with an Angular App and Promise API

I've been using the Kinvey HTML5 library to try to build a client-side app that uses Google identities for Login. Everything seems to be fine as far as the Oauth transaction is concerned, but I'm trying to toggle the visibility of my login button…
Ryan Norris
  • 70
  • 2
  • 4