开发者

How would I authenticate and make requests from an iPhone app to a Django backend to get around CSRF?

开发者 https://www.devze.com 2023-01-10 21:41 出处:网络
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 a

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 开发者_如何学Pythonwhich 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?


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


You can solve CSRF Issue. in django 1.4 Just using decoration at front of function.

Solution:
  @csrf_exempt
  def PostData(requst):
    pass


http request from the iphone application is not cross-domain

0

精彩评论

暂无评论...
验证码 换一张
取 消