I am trying to achieve something like this:
def AppAView(request)
myData = Process(request)
return myRedirect(url/to/AppBView, myData) # I want to pass myData to AppBView for
# further process
def AppBView(request)
myData = Process(request)
FurtherProcess(myData)
return render(request, template[myData])
AppAView and AppBView potentially can be on different servers. What would be the best practice or at least a good/safe way of doing this in Django without explicitly passing myData as part of the url?
Thank you