Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
13answers
27k views

HTTP Basic Authentication with HTTPService Objects in Adobe Flex/AIR

I'm trying to request a HTTP resource that requires basic authorization headers from within an Adobe AIR application. I've tried manually adding the headers to the request, as well as using the ...
12
votes
7answers
8k views

Can I use HTTP Basic Authentication with Django?

We have a website running on Apache, access to which has a number of static pages protected via HTTP Basic authentication. I've written a new part of the site with Django using Django's built in ...
10
votes
4answers
15k views

How to do HTTP authentication in android?

I am checking out the class org.apache.http.auth. Any more reference or example if anyone has?
10
votes
1answer
12k views

Basic HTTP Authentication on iPhone

I'm trying to get a small twitter client running and I ran into a problem when testing API calls that require authentication. My password has special characters in it, so when I try to use the ...
10
votes
6answers
5k views

How can I supress the browser's authentication dialog?

My web application has a login page that submits authentication credentials via an AJAX call. If the user enters the correct username and password, everything is fine, but if not, the following ...
8
votes
1answer
735 views

Building a C# / ASP.NET API using oAuth for API Authentication

Does anyone have any examples or advice for how to go about using oAuth to provide the authentication mechanism for an API that should be publicly exposed? Specifically I'm talking about being an ...
8
votes
4answers
660 views

Why is the http auth UI so poor in browsers?

Why isn't there a logout button? Why no list of "websites you're logged into"? Is it because of some issue with the HTTP specs? Life would be much easier for web developers if they could actually ...
7
votes
4answers
2k views

WCF WebHttp Mixed Authentication (Basic AND Anonymous)

All of this is pertaining to WebHttp binding, hosted in a custom Service Host (IIS is not an option at this time). I've implemented a custom UserNamePasswordValidator, and a custom ...
6
votes
2answers
2k views

HTTP authentication between devise and iphone app

I'm new to ruby on rails but I want to send the data from my SQlite database from my iphone app to the rails web app. Like a "sync" service. I'm using devise for authentication for the web app. I ...
6
votes
2answers
1k views

Basic HTTP Authentication on Android Phones to Rails Server

I'm trying to connect to a Rails Application Server that requires authentication. I am using the Jakarta HTTP Client for Java on a Desktop application and it works 100%. But when the exact same code ...
6
votes
2answers
1k views

Rails/Rspec Make tests to pass with http basic authentication

Here my http basic authentication in the application controller file (application_controller.rb) ... before_filter :authenticate protected def authenticate authenticate_or_request_with_http_basic ...
6
votes
4answers
486 views

Supressing browser's authentication dialog

I apologize that there is a similar question already but I'd like to ask it more broadly. Is there any way at all to determine on the client side of a web application if requesting a resource will ...
6
votes
8answers
22k views

Flex 3 - how to support HTTP Authentication URLRequest?

I have a Flex file upload script that uses URLRequest to upload files to a server. I want to add support for http authentication (password protected directories on the server), but I don't know how to ...
5
votes
1answer
2k views

Authenticating Gitweb with Gitosis without LDAP Auth?

I found your article using Apache Auth with gitweb, gitosis. I was wondering if there was a way to do this if I wasn't using LDAP for authentication. We currently have a very large NIS domain which ...
5
votes
3answers
3k views

HTTP Digest Authentication versus SSL

What is the difference between HTTP Digest Authentication and SSL from a performance, security and flexibility point of view?
5
votes
5answers
12k views

GreaseMonkey script to auto login using HTTP authentication

I've got quite a few GreaseMonkey scripts that I wrote at my work which automatically log me into the internal sites we have here. I've managed to write a script for nearly each one of these sites ...
4
votes
1answer
348 views

rails Devise http authenticating mobile

I'm trying to authenticate an android client app to my server ruby on rails app which uses Devise gem. But I've tried http authentication, and post requests to authenticate, and the server just ...
4
votes
2answers
783 views

Avoid HTTP auth popup in a chrome extension (digest)

I'm currently developing a chrome extension, I need to access some http-auth protected resources (webdav). The HTTP auth is using (in the best case) a digest authentication. I'm able to do the auth ...
4
votes
1answer
1k views

Complete guide to pass credentials to a server via HTTP auth and getting response back

So we know how to do http get and post connections. http://exampledepot.com/egs/java.net/pkg.html And we want to pass credentials(uname,passwd) to any web server to access the url or get the response. ...
4
votes
2answers
1k views

Netbeans Basic Http Auth Jax-WS

how can I access a webservice through a basic http authentification? I am using the netbeans built in webservice client features. But when I try to access the webservice, I get an exception with a 401 ...
4
votes
1answer
498 views

Is basic auth with SSL secure enough?

I am developing an application which need to handle a massive amount of REST requests. Using basic auth will save a lot of computing resources since I don't have to compute the signatures. Also, the ...
4
votes
2answers
436 views

Destroying $_SERVER session?

Okay so I'm not using any session variables, rather my code looks like this: if (!isset($_SERVER['PHP_AUTH_USER'])) { header('WWW-Authenticate: Basic realm="Enter your Twitter username and ...
3
votes
2answers
114 views

Standard 401 response when using HTTP auth in flask

In flask, I'm using the following snippet to enable HTTP auth: def authenticate(): return Response('<Why access is denied string goes here...>', 401, {'WWW-Authenticate':'Basic realm="Login ...
3
votes
1answer
77 views

How does http://user:pass@host.com authentication work?

Can anyone explain how http://user:pass@host.com authentication works? Does the browser send the Authorization header with user:pass being base-64 encoded? I opened the Net console in Chrome ...
3
votes
1answer
151 views

How to logout of an HTTP authentication(htaccess) that works in google chrome?

I got a solution for firefox and ie but i didn't find any solution for google chrome. is there a way to do it in google chrome? Thx in advance.
3
votes
2answers
111 views

Can I do preemptive authentication with httplib2?

I need to perform preemptive basic authentication against an HTTP server, i.e., authenticate right away without waiting on a 401 response. Can this be done with httplib2? Edit: I solved it by adding ...
3
votes
2answers
105 views

Use Java to read from a REST service

I am trying to figure out how to read from a REST source that requires authentication and having no luck. I have this working fine using C# as follows: HttpWebRequest request = (HttpWebRequest) ...
3
votes
2answers
108 views

Java: How do I pass parameters to a Webstart Applet?

Scenario: server provides same Webstart Applet to many different (but authenticated) clients. Each Applet has to "know" which client it is on. Therefor the server has to be able to pass some ...
3
votes
2answers
116 views

Authenticating across different subdomains (but not all)

I have a site set up on www.domain.com, the site can authenticate users and persist their credentials in a cookie. On occasions the users access handlers that are set up on different servers on a ...
3
votes
2answers
353 views

Using Basic HTTP access authentication in Django testing framework

For some of my Django views I've created a decorator that performs Basic HTTP access authentication. However, while writing test cases in Django, it took me a while to work out how to authenticate to ...
3
votes
3answers
73 views

What options are available to secure a Drupal site via HTTP authentication?

How can I implement HTTP authentication for a Drupal based web app in order to restrict access, e.g. for developers only?
3
votes
1answer
116 views

Bundler http auth support

does anyone know if Bundler supports http auth? I'm pretty sure rubygems does (I think i read that somewhere) but I don't see anywhere in the docs where I might specify a username/pwd for a ...
3
votes
1answer
2k views

Digest authentication with Jersey Client

I have written a REST web service with Jersey Server (that totally rocks !). I am now developing the client part of it, with Jersey Client as well. On the server side, I have chosen a DIGEST ...
3
votes
1answer
3k views

Rails 3 HTTP digest authentication

Is HTTP digest authentication still supported in Rails 3? I tried the following code in Rails 2.3.5, it works. class Admin::BaseController < ApplicationController before_filter :authenticate ...
3
votes
2answers
1k views

Rails: Accessing the username/password used for HTTP Basic Auth?

I'm building a basic API where user information can be retrieved after that user's login and password are correctly sent. Right now I'm using something like this: ...
3
votes
3answers
570 views

how to use a private yum repo on amazon-s3 to provision amazon-ec2 instances?

My fantasy is to be able to spin up a standard AMI, load a tiny script and end up with a properly configured server instance. Part of this is that I would like to have a PRIVATE yum repo in S3 that ...
3
votes
2answers
757 views

pywikipedia bot with https and http authentication

I'm having trouble getting my bot to login to a MediaWiki install on the intranet. I believe it is due to the http authentication protecting the wiki. Facts: The wiki root is: ...
3
votes
2answers
2k views

How do I keep Firefox from prompting for username/password with HTTP Basic Auth with JQuery AJAX?

I'm writing some browser side dynamic functionality and using HTTP Basic Auth to protect some resources. The user experience is very important and is highly customized. Here's a simple test JQuery ...
3
votes
2answers
1k views

Apache .htaccess password protect with relative path

I want to create a .htaccess file in my DocumentRoot, so that the directory is password protected. But the password file, I want to specify by using the relative path of DocumentRoot. So, if I am ...
3
votes
2answers
11k views

IIS7 and Authentication problems

i've got a stock standard ASP.NET web site, deployed to our development machine (internal machine in our server room). Now, this dev site can be accessed by both INTERNAL and EXTERNAL users. Now, in ...
2
votes
1answer
78 views

HTTP basic authentication using javascript best methods

I have html5 + javascript +phone-gap app for ios. I need to connect to a protected url and pass HTTP basic authentication in base64 to get a rss feed. Am not using jquery in the app and look good ...
2
votes
2answers
73 views

PHP Authentication (beginner)

I have recently started learning PHP. I made a basic website and wanted to basically password it. I'd appreciate it if someone could tell me why this doesn't work. I know it doesn't work because ...
2
votes
1answer
96 views

Automatic authentication using Javascript?

Just to give a background, our web application involves connecting to a network camera stream. Now the camera has an option for security, so we set up a password for its 'root' account. So whenever we ...
2
votes
1answer
138 views

Sign up a new account from mobile app to rails devise app

I am using HTTP authentication to sign_in and sign_out. It works great. However, I want to allow users to sign_up for a new account from my mobile app and then send that over using POST and in JSON ...
2
votes
1answer
60 views

Why http authentication with htaccess get slow when password incorrect?

I don't know why but when i type a wrong password it always take alot of time to come back with authentication dialog. but when i type a correct password it always go fast. htaccess: AuthUserFile ...
2
votes
1answer
345 views

How to use http authentication in devise with an optional omniauth token as the authentication token

We have a rails app setup that uses devise & omniauth to allow logging in via facebook authentication. We also have a mobile app that is currently using http authentication to login to the rails ...
2
votes
0answers
334 views

Compatibility of Authlogic with http_basic_authenticate_with

my Rails 3.1 application uses authlogic. I just added http_basic_authenticate_with so I can restrict access to the entire site for running a private beta, and it seems to have broken authlogic: class ...
2
votes
2answers
215 views

Which HTTP authentication scheme does Jenkins use?

I'm trying to send HTTP requests to a Jenkins server which requires authentication, which authentication scheme do I need to use? cURL seems to figure it out automatically, FWIW.
2
votes
1answer
512 views

Accessing HTTP authentificated SOAP webservice via KSOAP2 HttpTransportBasicAuth

I need to connect to webservice, which requers authorization. I tried to use headers: Element usernameElement = new Element().createElement(NAMESPACE, "Username"); ...
2
votes
1answer
50 views

Infering Credentials with WCF

I need to get a list of tasks for a user from a WCF service to display on an iPhone app. I'm planning to use something like ...

1 2 3 4 5