[Fixed]-How to make Django pass cookies when communicating with Node.js server using socket.io?

1👍

All right, so I’ve made some progress.
The cookie problem came from the fact I was making cross-domain request, adding a few lines enabled CORS, which didn’t solve the cookie issue, but allowed me to communicate between servers (basically I set the headers of the response using express. I then passed necessary data in the query, even if not the most secure way to do it, I’m just building an MVP, and it’s enough for now.

I haven’t been able to make the chat work from my Titanium mobile app, but since I can use a webview to handle it, I will be fine.

Hopefully that will help someone.. If anyone needs me to post some code snippets I will gladly do so upon request!

Cheers

Leave a comment