Как получить код состояния для всех запросов в приложении Django [закрыто]
Is there a possibility in Django 5.0 to get all server responses for url addresses registered in the application? Or the ability to pass the url address and get the response code, but for an already authorized user.
I tried using the requests library.
Without authorization the response code is not valid, because in my application all url addresses are available only after authorization. Depending on the assigned business roles, different url addresses are available to different users. I would like to be able to generate a list of available url addresses for an authorized user in advance. For authorization and authentication I use Active Directory over LDAP and there are no user passwords in the application itself.