Python Forum
Knowing User's Connection Type in Django - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Knowing User's Connection Type in Django (/thread-36842.html)



Knowing User's Connection Type in Django - Dexty - Apr-05-2022

Just wondering if it's possible to get an authenticated user's connection type. For example, are they connected to my Django app through a Wi-Fi (protected or open) or through a mobile data.


RE: Knowing User's Connection Type in Django - ndc85430 - Apr-05-2022

HTTP won't have that information in the request. Why do you need it? What are you trying to achieve?


RE: Knowing User's Connection Type in Django - Dexty - Apr-27-2022

(Apr-05-2022, 03:52 PM)ndc85430 Wrote: HTTP won't have that information in the request. Why do you need it? What are you trying to achieve?
Thanks for your response. I'm working in a team and we're working on an in-house product. The team lead hasn't explain why this is important but it seem to be for the purpose of data gathering.