Issue
So I'm trying to enable cross origin resource sharing in Django, so I can post to an external site, and it's easy to do when I set
response["Access-Control-Allow-Origin"]="*"
but I want to instead have it check whether the origin is in an allowed list of origins (essentially to restrict it to only allow specific sites) but I can't seem to find anywhere in the Django request where I can get the origin information.
I tried using request.META['HTTP_HOST'] but that just returns the site that's being posted to. Does anyone know where in the Request object I can get the origin of the request?
Solution
I strongly advice you to use django-cors-headers. It lets you to define CORS_ORIGIN_WHITELIST
which is a list of allowed origins in more pythonic way.
Answered By - mariodev
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.