Passing Django Usernames to Streamlit

I’m working on a project using Django for user authentication and Streamlit for the front end. I’m struggling to fetch the authenticated user’s information from Django and pass it to my Streamlit app.

How can I efficiently retrieve user data from Django and securely transfer it to Streamlit? Any guidance or code examples for this integration would be appreciated. Thanks!

Attempted to establish communication between Django and Streamlit by creating an endpoint in Django to fetch user information. I expected to retrieve the authenticated user’s data from Django and then use an HTTP request in Streamlit to fetch this data from the Django endpoint. However, I encountered difficulties in properly implementing this communication and handling the data transfer securely between the two platforms.

Also Tried to Use Javascript To Fetch On Screen Infomration