Skip to content Skip to sidebar Skip to footer

Django-cors-headers Not Working

My django version is 1.8.6. I've copy the corsheaders folder into the project folder. i've pip install django-cors-headers(ver 1.1.0). This is my setting.py: INSTALLED_APPS = (

Solution 1:

Better to create a proxy at your application which in turn will call the other domain and will return you the data:

functiongetLeague() {
  $.ajax({
    url: '/crossdomainData',
    type: 'GET',
    dataType: 'json',
    success: function(data) {
        alert('Success');
    },
    error: function(data) {
        alert('Fail');
    }
    });
}

As you are using django, you can import this Django HTTP Proxy.

Introduction

Django HTTP Proxy provides simple HTTP proxy functionality for the Django web development framework. It allows you make requests to an external server by requesting them from the main server running your Django application. In addition, it allows you to record the responses to those requests and play them back at any time.


Another option is here taken from this post answered by @dvcrn.

import urllib2
    def crossdomainData(request):
        url ="http://otherdomain.ashx?username=xxx&password=xxx&sportsBook=xxx&sportsType=xxx&gameType=xxx"
        req = urllib2.Request(url)
        response = urllib2.urlopen(req)
        returnHttpResponse(response.read(), content_type="application/json")

Solution 2:

Some 500 errors happen earlier than the CORS middleware, so it has no chance to add CORS headers. If the response status code was 500, this might be the issue and CORS might be working fine.

Post a Comment for "Django-cors-headers Not Working"