I'm working with an iPhone developer who does not have any Django experience, and I am relatively new to Django. I've built an existing Django app with a web interface that allows a user to log in and add books from our database to his personal library.

We are trying to build an iPhone application that allows a user to authenticate and the access the library, and I was wondering what is the best way to do the authentication and then request the user's library. We started out using an HTTP POST requests to send credentials to the Django app, but another Django developer I know told me this would be a cross-domain request which would not work starting with Django 1.2.

If I can't do cross-domain HTTP POST requests, how should I POST data from the iPhone app to the Django application?

link|improve this question

67% accept rate
Are you asking about this? docs.djangoproject.com/en/dev/ref/contrib/csrf – S.Lott Aug 5 '10 at 17:38
yes. i found this article, but i guess what i really want to know is whether it is 'wrong' to use regular POST requests from the iPhone app to send data back to the Django app. – gohnjanotis Aug 5 '10 at 18:08
feedback

2 Answers

up vote 4 down vote accepted

Just use the csrf_exempt decorator.http://docs.djangoproject.com/en/dev/ref/contrib/csrf/#exceptions

And yes, use the POST request type, it's the only logical choice when you're sending data to the server. As per RESTful API guidelines: http://en.wikipedia.org/wiki/Representational_State_Transfer#RESTful_web_services

link|improve this answer
Are there any actual hacking risks if this is done only for a login view? This is the obvious quick fix... but CSRF is there for a reason. Just disabling it..? Meh. – Jasconius Jan 25 '11 at 2:54
Yes CSRF is there to prevent cross-site request forgery, but no matter what you do somebody using your API will never be on the same domain. – Swizec Teller Jan 26 '11 at 21:27
feedback

http request from the iphone application is not cross-domain

link|improve this answer
it is not? then what would be the domain the iphone app is coming from? – gohnjanotis Aug 5 '10 at 17:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.