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

Send text From Windows OS to Android Device using Delphi xe7

I have a Delphi XE7 app pushing a notification from Windows to my Android devices using Kinvey and GCM and it's working fine. Now I wanted to do the reverse way sending text/object from Android devices to my Windows machine. Is there a way to use…
koul
  • 431
  • 2
  • 10
  • 20
2
votes
0 answers

How to allow public read data from Kinvey, but authenticated access on create/edit/delete

I set "shared privacy" for collections privacy (only owner may edit/delete - Bob). If other user (Alice) authenticated, she may view Bob's records correctly. But if Eve (unregistered user) wants to read Bob's record, she gets an error: { name:…
Maya Paluy
  • 93
  • 7
2
votes
2 answers

Multiple Push Notifications Received

I have created an mobile application by using Delphi XE7. The program sends push notifications via Kinvey and GCM. Upon installation of the APK for the first time, it sends one push notification, which is working correctly. For the seconds…
Alvin Lin
  • 199
  • 2
  • 5
  • 13
2
votes
0 answers

How to add sound/vibration to remote push notification in Delphi XE6

I followed the great Sarina tutorial about showing Kinvey push notifications on my Android app. http://blogs.embarcadero.com/sarinadupont/2014/04/16/remote-push-notifications-on-android-with-rad-studio-xe6/ Everything works awesome now, but ... I…
2
votes
1 answer

Send push notification to clients with Kinvey from Delphi?

I have done the client side push notification application, with Kinvey backend, but I would like to send push notifications automatically from another Delphi application I am developing. How to send push notifications to the mobile clients from…
Yordan Yanakiev
  • 2,546
  • 3
  • 39
  • 88
2
votes
1 answer

How To Execute A 'Hello World' With Kinvey via REST?

I'm a REST newb and having lots of trouble understanding how to use it, specifically, with the BAAS Kinvey & Javascript. I've spent quite a lot of time trying to learn how to use REST (which BTW is shockingly difficult to find) and the best resource…
Alan Klement
  • 1,218
  • 7
  • 18
2
votes
1 answer

Xcode error when I add a framework

When I just add a .framework to the "Link Binary With Libraries" list by dragging it from the Project Navigator to the tab I get an error. My error... Undefined symbols for architecture i386: "_OBJC_CLASS_$_UAPush", referenced from: …
Jacques Blom
  • 1,794
  • 5
  • 24
  • 42
1
vote
1 answer

too short FB accessToken in Kinvey _socialIdentity using kinvey-nativescript-sdk

I have working log-in process with Facebook using Kinvey MIC in my NativeScript app. I am able to log-in into the Kinvey and _socialIdentity record is successfully created. Due to the fact that I need to know also user's email registered with FB…
Juraj
  • 23
  • 3
1
vote
2 answers

how to handle this in node js

Currently I'm doing this: filename : userOrder.js const paymentGateway = require('./paymentGateway'); module.exports = { save: function() { // save user order record return paymentGateway.makePayment(); …
Hiren Makwana
  • 1,976
  • 2
  • 13
  • 28
1
vote
1 answer

Paypal Kinvey Integration

I am trying to develop an iOS app with Kinvey as the mBaas and Paypal. Context: -Kinvey will store and transmits location data of users -Paypal Adaptive payments facilitates payments between users and other users as well as between users and the…
Adology91
  • 11
  • 1
1
vote
2 answers

Trying to upload an image from android app to cloud using kinvey

I'm trying to upload an image, saved in the internal memory of my phone, clicked by an android app to a cloud service, and am using Kinvey to do so. But I'm facing some problems with it. Every time I run the code that contains the upload part, I…
1
vote
1 answer

Update a preexisting user on Kinvey

I am having a hard time updating an already registered user on Kinvey. For example if I used this code to register a new user : KCSUser.userWithUsername( "kinvey", password: "12345", fieldsAndValues: [ KCSUserAttributeEmail :…
iNick
  • 105
  • 1
  • 11
1
vote
1 answer

java.lang.NoClassDefFoundError: com.google.api.client.http.apache.ApacheHttpTransport() on some phones Kinvey Android?

The following error is obtained when running my app using the Kinvey client library: E/AndroidRuntime: FATAL EXCEPTION: main java.lang.NoClassDefFoundError:…
LoveMeow
  • 3,858
  • 9
  • 44
  • 66
1
vote
1 answer

Lazy Loading UICollectionView Images

There's a UIImageView for every cell of the UICollectionView and I need to load them so that as you scroll through the collection they show up properly and every image loads on its cell at its index path, once. Every image is downloaded from…
Hugo
  • 147
  • 5
1
vote
2 answers

Custom Modules in Kinvey

Inside a custom endpoint in Kinvey, I see the modules parameter which exposes inbuilt modules like so: function onRequest(request, response, modules) { } I could see from the documentation here that Kinvey has some existing inbuilt…
Harindaka
  • 4,658
  • 8
  • 43
  • 62
1
2
3
13 14