Python Django redirect to external url with session cookies?

Is there any way to redirect from python django page to external url and different website with it's own session cookies like JSESSIONID?

My django web app doesn't use any JSESSIONID but I am planning to keep another website's JSESSIONID's and redirect it from my web app with its JSESSIONID. I think it's kinda like OAuth methodology I want to build.

If I can't do this, I think I need to build a little desktop app to do this only. But changing to this method is my worst case scenario. What do you think?

Thx in advance...

Back to Top