External django redirect with POST parameters
I'm trying to create a redirect in a Django view to an external url with some get parameters attached to the request. After doing some looking around and some trying around, it seems I have hit a road block. So my view looks something like this def view(request): data = get.data(request) if something in data: return HttpResponseRedirect('example.com') This is as far as I was able to get. I know that you in the request url can specify some get parameters like this: ... return HttpResponseRedirect('example.com?name=smith&color=brown') However since some of the data is sensitive, I don't want it