I need to get the query string from this URL https://stackoverflow.com/questions/ask?next=1&value=3 and I don\'t want to use request.META. I have figured out that there
You can make Query string using GET parameters like this
request.GET.urlencode()
This does not include the ? prefix, and it may not return the keys in the same order as in the original request.
?