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

Get _id of new Kinvey data on angular app

When I save new data to a DataStore in Angular, I don't want to specify the _id. The system automatically assigns one. From looking at the network trace, the _id is passed back to the application in the response -…
jhoskins98
  • 114
  • 5
0
votes
1 answer

Android : custom adapter showing data multiple times

I am building a test application with kinvey as a backend.I download the kinvey entities from the backend and add them to my adapter.The adapter behaves wrongly the first data entity is accessed three times. The code for adapter is below public…
Aqib
  • 396
  • 4
  • 13
0
votes
1 answer

AngularJS failed to generate dynamic menu

I'm trying to build a dynamic menu by using angularJS, unfortunately it doesn't work and I have no idea why. Any thought? The idea is: I'll iterate through a collection of menuItems of the current controller instance. The name property of the item…
newbie
  • 79
  • 1
  • 7
0
votes
1 answer

angularJS failed to load module

Is there anyone know why I got the following issue: Uncaught Error: [$injector:modulerr]…
newbie
  • 79
  • 1
  • 7
0
votes
0 answers

How can I add ACL permissions to users?. in Kinvey

I have this. It does not work. in others collections work fine with save, but this collection (users) not have save. Kinvey.User.get('546264a54b9cb82c61003727').then( function(response) { $scope.user = response; var acl = new…
0
votes
1 answer

How to delete entities with relations in Kinvey / Angular

So lets say we have Project and Task entities in kinvey, each entity is stored in it's own collection (projects and tasks). When saving this entities I defined 'relations' so I can access the tasks related to a project easily. // Save the Project,…
code4jhon
  • 5,725
  • 9
  • 40
  • 60
0
votes
1 answer

Kinvey Key and Secret Key Security on Web

in order to access my kinvey account from web, I put in config.js file like below: var config = { kinvey : { app : { key : 'kid_123123123', secret : '66a1111f62233445502833' } } }; and init it in every js file like…
Mark Thien
  • 1,108
  • 2
  • 22
  • 35
0
votes
1 answer

How to fetch nested relations on Kinvey

So I'm working in an AngularJs app that is connected to a Kinvey backend. www.kinvey.com In Kinvey we can fetch an entity and it's relations like this: var promise = $kinvey.DataStore.get('events', 'event-id', { relations : { location:…
code4jhon
  • 5,725
  • 9
  • 40
  • 60
0
votes
1 answer

fetching data from kinvey causing app crash

I am making an android app and fetching data from kinvey. It is creating users and logging them in but when i try to fetch data from kinvey then app got crashed. here ismy entity class: Here is the kinvey Collection for my app: and finally here is…
Fahid Nadeem
  • 412
  • 2
  • 7
  • 19
0
votes
1 answer

Kinvey: Google Places Location Query setlimit(>20) only returns 20 results regardless

I've got the Kinvey's Google Places functionality working pretty well, the only thing that has not been working is the fact that when my entity gets filled by my query it returns only 20 results, even if I set Query.Setlimit(100) and…
0
votes
1 answer

TBackendPush send Push to Kinvey

I am trying to send a JSON message to kinvey backend, anyway the custom endpoint logic is exiting with error message. my code is BackendPush1.GCM.Title := 'title'; BackendPush1.GCM.Message := '{ "message":"hi", "caption":"batman"…
Yordan Yanakiev
  • 2,546
  • 3
  • 39
  • 88
0
votes
1 answer

Uploading image to Kinvey and Angularjs

I am trying to change what my app currently does so that instead of inputing a url to reference an image, it uploads the image to the Kinvey collection instead. Here is a JSfiddle of how I am currently saving the info from my form to my kinvey…
Gchorba
  • 301
  • 2
  • 13
0
votes
1 answer

Best way to fire an event when app loads a page in cordova app singlepage with jquery mobile?

I'm trying to fire and event at the loading of my app: When the app starts, I load the #home page BUT if the user is not cached (I use kinvey), the app should change page to the #login. How can I accomplish that? I tryied this code at the beginning…
0
votes
1 answer

How to generate a temporary url that grants a specific database element and send via email?

I'm using Cloud9 in connection with Heroku to launch a web app. Due to limited programming skills and experience, I'm trying to focus only on front-end coding. So I'm using Kinvey as a Backend and Mandrill for emails. The logic contains the…
Omar Shazly
  • 93
  • 3
  • 10
0
votes
0 answers

Magical Record, Accessing NSManagedObjectContext in NSManagedObject

I'm using Magical Record to manage Core Data in my app which uses Kinvey. On my NSManagedObject I've implemented the following method as a requirement for Kinvey's SDK to work with Core Data. + (id)kinveyDesignatedInitializer:(NSDictionary…
Kerman
  • 1