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

AngularJS Google Oauth 400 Error Invalid parameter value for redirect_uri: Fragment not allowed

I am using Kinvey to handle Oauth on my AngularJS app, and it works just fine for Facebook, but when I try to sign in with Google, I am getting a 400 error: Error: invalid_request Invalid parameter value for redirect_uri: Fragment not allowed:…
kanzelm3
  • 535
  • 3
  • 12
5
votes
4 answers

Efficient way to store data if no internet connection to send to backend Android?

I am using kinvey as a backend to store some data. Everytime the user answers some questions on the phone(Android), the data is sent to kinvey immediately. But there can be a scenario where the user is not connected to the internet, so sending the…
LoveMeow
  • 3,858
  • 9
  • 44
  • 66
4
votes
0 answers

Xamarin with Kinvey database

I'm using Kinvey db for my project with Xamarin. I familiar with parse pointer functionality. I want to do the same functionality with Kinvey. Kinvey has reference functionality too. I tried that but it always store the null value in kinky db. So…
Harshadcse
  • 225
  • 1
  • 9
4
votes
1 answer

Is there a nice way in Trigger.io to handle OAuth1.0a for Twitter?

I'm using kinvey. They provide this great tutorial detailing sign-in via oauth. They also handle a considerable amount on their end allowing a very simple social signin method. The issue is providing a proper Callback URL when creating the app…
Karoh
  • 2,390
  • 3
  • 23
  • 29
3
votes
1 answer

firebase google or query support or any alternative solution

We have just started exploring firebase for our new app. The app basically needs chat between users and Group chat. For the chat application we are creating: MessageThread(id, User:userA, User:userB, UserGroup:group, Array:deletedBy, ...) The main…
iMemon
  • 1,095
  • 1
  • 12
  • 21
3
votes
1 answer

How to delete multiple rows in a Collection from Kinvey Console

I am not able to find any option in the Kinvey console to delete multiple records Is there any option to delete multiple rows in a Collection from Kinvey Console
Nagesh
  • 344
  • 6
  • 16
3
votes
1 answer

Add photo attribute to user collection in Kinvey

I wanted to add a profile photo to user collection when creating a user. I was thinking of doing [user setValue:imageData forAttribute:@"photo"] and then with help of KCSLinkedAppdataStore store it. But it fails with error JSON serialization not…
ash
  • 101
  • 1
  • 7
3
votes
1 answer

It is impossible to receive object according to the link

As specified in the documentation I create objects, I fill their properties and save the link in the Data Store: public class InvitationEntity extends GenericJson { @Key public String objectId; @Key public int status; …
3
votes
1 answer

In Android, how do I make a case-insensitive query on Kinvey datastore?

I am using Kinvey as my back-end for my android app. I have followed the guide on their datastore querying found here. It seems that the queries are case-sensitive. How do I make a case-insensitive query?
janakagamini
  • 237
  • 3
  • 11
2
votes
1 answer

Error while generating signed APK: duplicate entry: android/support/v7/util/ThreadUtil$

I've spent countless hours on this, read through tons of SO posts, but can't seem to find a solution. When i generate a signed APK, I keep getting Error:Execution failed for task…
tash
  • 189
  • 1
  • 15
2
votes
1 answer

How to group documents by matching array elements with MapReduce in MongoDB?

I have a database with a column containing an array of strings. Example table: name | words | ... Ash | ["Apple", "Pear", "Plum"] | ... Joe | ["Walnut", "Peanut"] | ... Max | ["Pineapple", "Apple", "Plum"]…
Appleshell
  • 7,088
  • 6
  • 47
  • 96
2
votes
1 answer

Kinvey one-to-many relationship

I have two collections - Categories and Products. Category have array of products. How I can create needed relation for objects? I have Products column with content for one…
Artem Novichkov
  • 2,356
  • 2
  • 24
  • 34
2
votes
4 answers

Setting Up Kinvey in Android Studio

Does anybody use Kinvey as a Back End Service? I followed these steps to set it up: http://devcenter.kinvey.com/android/guides/getting-started When I add Kinvey to my dependencies in my gradle file, I get a syntax error that states: Failed to…
Mark F
  • 1,523
  • 3
  • 23
  • 41
2
votes
1 answer

Merging Users in Kinvey

Situation: User A registers an account in our application and logs in. For what ever reason logs out. Logs in to the application again using Facebook social sign on with an account that has the same email associated with it as the original…
2
votes
1 answer

Update data in Kinvey Database

I want to update data in Kinvey Database. I used Rest API (PUT Method). but it is not working . Same Authorization token in GET and POST method is working fine. Here is the Error : { "error": "InsufficientCredentials", "description": "The …
Harshadcse
  • 225
  • 1
  • 9
1
2 3
13 14