Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5968093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:02:24+00:00 2026-05-22T20:02:24+00:00

Ok, so this seems bad (and it probably is, but i have enough doubts

  • 0

Ok, so this seems bad (and it probably is, but i have enough doubts at the moment that I want to try it).

I have a Django bases website with a jwplayer flash app embedded on one of the pages. The user has to login to get at that page. The jwplayer just plays an icecast stream.

What I would like/need to do is have it so that only authenticated users can get to the icecast server. At the moment if they grab the url from the webpage, they can get to it fairly trivially.

Icecast can authenticate via POST which I’ve setup in a django view.

So what I want is for the flashplayer to send the username and password of the user that is logged in, to icecast, which will then authenticate with the same username and password.

My problem is that django doesnt store the actual password, just a hash (a good thing) so I’m beginning to think that I cant really send the user and password to icecast for it to authenticate with.

My other thoughts were to just send the username, and check if that person has already authenticated.

But this would allow someone to listen if someone was already logged in.

Could I do something with a session variable or something?

Django guru’s help me! Im open to all and any ideas.

Cheers

Mark.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:02:25+00:00Added an answer on May 22, 2026 at 8:02 pm

    Why not just have your flash player look for the Django session cookie and then validate against the web server that the user is logged in?

    Add something like this to your urls:

    (r'^loggedin/', logged_in_user),
    

    Add a view something like this (not tested):

    from django.http import HttpResponseForbidden
    def logged_in_user(request):
        if request.user.is_authenticated():
            return HttpResponseForbidden()
        else:
            response = HttpResponse(mimetype='text/plain')
            response.write('ok')
            return response
    

    Then just do a get on the /loggedin/ and check the return code, if it’s 200 they are logged in if 401 they are not (assuming you are passing in the session cookies)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It seems that this question gets asked frequently , but I am not coming
Parsing the string message seems bad. Or was this exception not meant to be
This seems a 'stupid' question, but let me explain. I'm working for a company
This seems like a repeated question but i'm not able to get my answer.
This seems to be primary Question. but i search it and i couldn't find
This seems like such a simple issue but I cannot find an elegant solution.
This seems to make perfect sense, but it is not working. I seem to
This seems like the simplest Git question, but I can't find ANYTHING on it.
This seems like something that could be quite useful and yet and I can't
This is probably something extremely simple but I can't get my head around it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.