I have a simple python function inside my Django app's views.py:
def some_function(requests):
return redirect('some_url')
The redirect returns some useful information that I want to use later in the other function. Is there any way I can store the response URL given by the redirect in a variable so that I can use it later in my app. Thanks