0
votes
0answers
36 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
80 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
297 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
236 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 ...
3
votes
2answers
448 views

CSRF Token in Django and iOS

So I am trying to understand what to do here... I am doing a POST call to my Django server from iOS and I keep getting the 403 Error (Invalid CSRF Token). I am thinking about implementing a function ...
0
votes
1answer
75 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
166 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 ...
0
votes
1answer
180 views

How to properly use Django (Web and Mobile Deployment) [closed]

This is a very general and open-topic question. So yesterday we decided we would like to create an iOS app based off our website that is currently being built with Django. Now, Django, like RoR, is ...
3
votes
2answers
637 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
0answers
190 views

Implementation an authentication scheme for mobile apps using Tastypie

I would like to create a REST service with authentication for mobile devices. This is the first time I will be doing something like this, so I would like to receive some advise on how I would ...
0
votes
1answer
131 views

Bad Syntax error for URI value after JSON serialization

For a REST web service call using PUT, I need to send JSON that looks like this: {"leader":"John Smith","leader_id":"asldfkj234234324asldkfs234","resource_uri":"/api/event/38001"} Instead when I ...
1
vote
1answer
3k views

401 error - Basic Authentication with AFNetworking AFHTTPClient & Tastypie

I'm using AFHTTPClient from AFNetworking to make a call from my IOS app to my server, which is using Django with TastyPie. It's working great when I turn authentication off on the server side; ...
1
vote
1answer
280 views

How to send a PATCH request using ASIHTTPRequest on iOS

I'm currently developing an iOS app that interacts with a server (in django) via a RESTful API (tastypie). I'm using ASIHTTPRequest to send the requests off. However, it doesn't appear to support ...
1
vote
1answer
583 views

Creating site in Django + iOS compatibility - is this a good approach?

I am looking to create a basic site which allows users to login (either through email or facebook authentication) and post their photos for other users of the site to comment on. Much like with like ...
1
vote
1answer
338 views

Login A User in iPhone with Twitter and Save Authenticated User to Remote Django Application

I have a vague idea of how to do this. My app is consuming an API written in Django, but my client required me to do authentication only with Twitter. The problem is, after I log them into the iPhone ...