http-authentication Questions

2

I have a site intended only for private consumption by 3 coders. It's simple HTML served by nginx directly but intended for consumption inside and outside the office. I want to have a simple passw...
Northumberland asked 23/5, 2012 at 11:21

2

Solved

The Problem I have a Android Gradle project which should pull a lib from my companys sonatype nexus server. The nexus server uses a certificate authentication. That means the client has a private ...
Corduroy asked 24/3, 2016 at 14:41

2

Solved

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 authe...
Unweave asked 2/6, 2010 at 8:43

5

Solved

I'm using Retrofit to do a basic POST request, and I'm providing a basic @Body for the request. @POST("/rest/v1/auth/login") LoginResponse login(@Body LoginRequest loginRequest); When I'm buildi...
Unlimber asked 26/1, 2014 at 23:23

1

Solved

I have a webservice to access that is protected by basic HTTP authentification. How do I set up the ODataClient to send the authentication to the web service? ODataClient client = ODataClientFac...
Mythomania asked 11/11, 2016 at 14:21

3

I am developing part of an Android application that needs to use a WebView to open a password protected site. I am using SharedPreferences to provide the username and password from when the user lo...

1

Solved

I'm using the basic HTTP authentication provided in Laravel to log in to my website. However, when I call Auth::Check() I always get false as the response even though I am logged in. Does Auth::Ch...
Lowgrade asked 17/1, 2016 at 17:5

1

Solved

I have an API with HTTP Basic Auth. If non-authenticated users send HTTP requests, then the server returns 401 status code and WWW-Authenticate header. And browser shows standard login form. Is it ...
Nordic asked 5/1, 2016 at 10:32

4

I have a static HTML site hosted on Amazon S3. Ideally I want to be able to limit access to a staging site in the same way as with a .htaccess/.htpasswd file. I understand that bucket policies ca...
Cassidycassie asked 15/11, 2012 at 13:42

3

Solved

I have a very simple selenium-webdriver script. I would like to do HTTP authentication using webdriver. Script: WebDriver driver = new FirefoxDriver(); driver.get("http://www.httpwatch.com/http...
Frendel asked 10/1, 2015 at 16:5

2

Solved

Normally when a publicly-accessible directory requires basic HTTP authentication, the value of $_SERVER['HTTP_AUTHORIZATION'] and/or $_SERVER['REMOTE_USER'] (or $_SERVER['PHP_AUTH_USER'], etc) will...
Arteriotomy asked 31/7, 2015 at 2:38

3

I have a Spring MVC REST service, with Spring Security (3.2.5.RELEASE) enabled. When I turn on @EnableWebMvcSecurity, a login form is automatically generated for me at http://localhost:8080/login. ...
Bonheur asked 25/2, 2015 at 23:24

1

Solved

I'm trying to connect to API and send authentication headers. I'm using Base64 as described here How do I get basic auth working in angularjs? function Cntrl($scope, $http, Base64) { $http.defau...
Steel asked 14/1, 2015 at 22:57

2

Solved

Is there a maximum length for a username or password which is sent to a web application through HTTP BASIC authentication? I looked through RFC2617 and couldn't find anything obvious, but was curio...
Pulvinus asked 26/10, 2010 at 20:42

1

I'm building an ecomm service using Spree which uses Devise, it contains all the data from our users, but we are using it as a service only, via APIs, so we have an application (rails 3.1), the cli...

2

Solved

I am trying to access a site that is password protected. It is not using basic authentication (even though the same user/pass box pops up in firefox) as the response header is WWW-Authenticate: Neg...
Achitophel asked 24/11, 2010 at 10:55

2

How to make Http Authentication for API using Volley library ? I tried the following code ....it throws Runtime Exception & Null pointer exception..Please provide suggestions String url = "Si...

3

Solved

Can't find AFHTTPClient on AFNetworking 2.0, to use: AFHTTPClient *client = [AFHTTPClient clientWithBaseURL:[NSURL URLWithString:@"http://examplewebsite.com]]; [client setAuthorizationHeaderWithU...
Virg asked 30/9, 2013 at 19:37

6

Solved

I am checking out the class org.apache.http.auth. Any more reference or example if anyone has?
Incivility asked 28/12, 2009 at 7:39

2

Solved

How can i show an image from a server with standard http protection without showing the authentication window? I now use standard html <img src="..."> but because the image is protected ...
Credenza asked 4/6, 2014 at 16:40

1

Solved

I'm trying to restrict direct access to elasticsearch on port 9200, but allow Nginx to proxy pass to it. This is my config at the moment: server { listen 80; return 301; } server { listen *:...
Fleabag asked 1/4, 2014 at 12:22

3

Solved

I am developing a Drupal site, within which is a page with an iframe, displaying an external SQL Reporting server driven site. This iframed site is protected on by HTTP authentication. In all brow...

3

Solved

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 add...
Major asked 16/8, 2011 at 11:27

2

Solved

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 fol...
Maurinemaurise asked 14/6, 2009 at 18:23

2

the past few weeks I've been hard at work with Angular, Node, TDD, Heroku, Amazon S3 etc. Trying to get a better picture of how a fully scalable SPA with a solid backend is built, working with grun...
Incorporating asked 29/8, 2013 at 19:40

© 2022 - 2024 — McMap. All rights reserved.