On Wed, Aug 26, 2009 at 8:58 AM, Jeff Sherk Forerunner Ministries<[email protected]> wrote: > When requiring a username & password with AuthType Basic, is it possible to > include them in a POST or GET request to the server so that it won't ask for > them (because they were provided)? > > If it's possible, what variable names are assigned to them.
No, basic authentication credentials have to come in over the prescribed HTTP header, not as part of a query string or POST body. A browser will allow you to encode them into the URL (http://user:[email protected]/foo), and will pass them to the webserver without prompting you. -- Eric Covener [email protected] --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [email protected] " from the digest: [email protected] For additional commands, e-mail: [email protected]
