http basic auth

2010-11-04 Thread Brandon Casci
Anyone know if basic http auth supported on Heroku? I don't get the login box so I'm assuming no, unless there is a special convention I don't know about. -- = Brandon Casci Loudcaster http://loudcaster.com = --

Re: http basic auth

2010-11-04 Thread Jimmy Thrasher
Not sure what you mean. If you implement it, it's supported.. it's just a webserver returning a 401 Unauthorized HTTP response. The browser will take care of popping up the dialog. Apache's .htaccess and other non-code ways of accomplishing it aren't supported. Here's an example for Sinatra:

Re: http basic auth

2010-11-04 Thread Chris Hanks
Don't see why Heroku would have a problem with it. I've been using Rails' basic auth functionality on Heroku for months with zero issues. On Nov 4, 6:39 pm, Jimmy Thrasher ji...@jimmythrasher.com wrote: Not sure what you mean.  If you implement it, it's supported.. it's just a webserver

Re: http basic auth

2010-11-04 Thread Brandon Casci
I figured it out... this works authenticate_or_request_with_http_basic this does not authenticate_with_http_basic oops! On Thu, Nov 4, 2010 at 9:43 PM, Chris Hanks christopher.m.ha...@gmail.comwrote: Don't see why Heroku would have a problem with it. I've been using Rails' basic auth