0
votes
0answers
24 views

Access api response meta with RestKit 0.20

I'm fairly new to RestKit (and iOS for that matter). My app is using an API (based on tastypie) that returns a response like this: { meta: { limit: 20, offset: 0, ...
0
votes
1answer
116 views

Was adding a REST API on top of Django a good decision to serve my mobile application? [closed]

Good evening! I currently have a web application which runs on Django perfectly fine. 3 months ago, we decided to create a mobile application to enhance the user's experience on mobile. (We are ...
1
vote
1answer
133 views

RKPaginator Params

how can I use the "RKPaginator" with a custom "page paramter? My API doesn't provide a "page" param, it uses a pattern like this for pagination: ...
0
votes
1answer
76 views

Restkit: How to get and map data from multiple source

I'm currently working on iOS Application with RestKit 0.20 to access data from Tastypie API. And I am trying to get feeds data from URL like this /api/v2/feed/?format=json Then I will get array of ...
0
votes
1answer
275 views

Getting 401 on PATCH Request sent with AFNetworking/RestKit but 202 sent from Browser

So I have this RESTful API running on top of my Django server by using Tastypie. So I am doing the following code from javascript, and everything works fine. var newData = {}; ...
1
vote
1answer
209 views

TastyPie / RestKit 501 Not Implemented

I'm using tastypie for a REST interface in django, from Xcode I can call the server and get data successfully using RestKit however I cannot POST data. I know it's hitting the right area as I had a ...
0
votes
1answer
71 views

KeyPath & forResourcePathPattern in ObjectMapping

Good afternoon everyone, Currently, my REST API returns the JSON in the form {"meta":{}, "objects":{}}. (This is done using TastyPie). I would like back in iOS, to grab only the objects. Before I was ...
1
vote
0answers
158 views

Connecting to Django via RestKit (iOS) and TastyPie

Good morning everyone, So we decided to create an iOS app and to do so, we added a REST Web-Service with TastyPie to our app. Everything is great so far... but we have a small problem. On the iOS ...
3
votes
2answers
550 views

iOS app with Django

So we currently have a website that was created using Django. Now, we would like to create a native iOS app that uses the same backend, so we don't have to re-code the whole thing. From my ...
0
votes
2answers
263 views

RestKit and Tastypie integration

I'm using RestKit to access a Tastypie API. I have control of both ends. I have configured RestKit mapping to successfully load a "naked" JSON resource at `/api/v1/organizations/1/ like this: { ...
0
votes
1answer
538 views

Integration of RestKit with Django-Tastypie

This is my first project using RestKit and I am trying to make my simple iOS application synchronize with a set of API served by a Django application using the Tastypie package. My iOS application is ...
5
votes
1answer
679 views

Is it possible to set the django-tastypie objects key?

By default, when using django-tastypie and fetching a resource list, the response is of the format: { "meta": { "limit": 20, "next": null, "offset": 0, "previous": ...