basic-authentication Questions
3
Solved
I am trying to do a POST request but when I am compiling and executing it with the debugger of Visual Studio Code, I am getting an error of 400 Bad Request.
Regardless of that, when I am doing the ...
Dairymaid asked 22/12, 2020 at 13:34
3
Solved
I am building a REST API using Spring and am currently authenticating all my requests using a custom user details service and this configuration code:
@Override
protected void configure(HttpSecuri...
Stepdaughter asked 23/3, 2018 at 13:16
3
Solved
After looking a lot, I've found some solutions that seem working, but not for me...
For example, I have this script:
require 'net/http'
require "net/https"
@http=Net::HTTP.new('www.xxxxxxx.net',...
Formyl asked 11/12, 2012 at 15:6
8
Solved
I'm trying to implement a rest client in c# .net core that needs to first do Basic Authentication, then leverage a Bearer token in subsequent requests.
When I try to do Basic Authentication in co...
Shoshonean asked 19/9, 2019 at 15:25
7
Solved
Using Apache, it is quite simple to set up a page that uses basic access authentication to prompt a user for a name/password and use those credentials in some way to grant access to that user.
Is ...
Kelso asked 24/7, 2010 at 0:17
3
I have an entire API deployed and accessible with Swagger UI. It uses Basic Auth over HTTPS, and one can easily hit the Authorize button and enter credentials and things work great with the nice Tr...
Woden asked 19/7, 2017 at 20:1
4
Solved
I'm currently creating a simple app for a school project, Spring Boot backend and AngularJS frontend, but have a problem with security that I can't seem to solve.
Logging in works perfectly, but w...
Primatology asked 11/6, 2016 at 11:26
8
Solved
I have spring web application with Spring security configured using java config approach. I want to exclude some URL patterns from authentication(eg: static resources etc..). I have done this earli...
Stylet asked 31/3, 2014 at 16:35
3
Solved
I am trying to setup nginx as a reverse rpoxy server in front off several IIS web servers who are authenticating using Basic authentication.
(note - this is not the same as nginx providing the aut...
Underpart asked 12/2, 2013 at 18:55
6
I'm trying to set up basic authentication with Spring Boot and I keep getting this error on startup. I've seen several examples with almost the exact same code as I have here and I can't tell what ...
Kiker asked 8/9, 2022 at 21:4
2
Background
The two application is developed in PHP Laravel web application. In the application, App 1 and App 2 are two difference Application and being managed by two different team. App 1 is use...
Alake asked 17/6, 2021 at 10:6
12
Solved
I'm building a REST web service client in PHP and at the moment I'm using curl to make requests to the service.
How do I use curl to make authenticated (http basic) requests? Do I have to add the ...
Taeniafuge asked 26/1, 2010 at 15:42
6
Solved
I'm trying to use Basic HTTP Authentication and followed the example on the PHP manual page. But it doesn't work for me. The variable $_SERVER['PHP_AUTH_USER'] doesn't seem to be set. When a user t...
Internode asked 11/11, 2010 at 0:43
3
I have a private website used as an intranet site for workers from around the world who have accounts with my Google Apps domain (example.com). They currently use OpenId to log in to various collab...
Cosmos asked 30/8, 2011 at 16:26
9
I am currently developing a REST-API which is HTTP-Basic protected for the development environment. As the real authentication is done via a token, I'm still trying to figure out, how to send two a...
Municipality asked 6/3, 2014 at 16:16
5
Solved
Since HttpClient 4.3, I have been using the HttpClientBuilder. I am connecting to a REST service that has basic authentication. I am setting the credentials as follows:
HttpClientBuilder builder =...
Malevolent asked 3/1, 2014 at 23:5
29
Solved
I'm working on a site that uses basic authentication. Using Chrome I've logged in using the basic auth. I now want to remove the basic authentication details from the browser and try a different lo...
Thud asked 11/5, 2011 at 0:5
1
Our web application has user/password authentication. It runs on a web server which is secured itself with HTTP Basic Auth. This is just a temporary solution / workaround. The web application's aut...
Rozina asked 22/9, 2020 at 10:40
4
Solved
Hello guys !
So in Laravel 4 we could do
Route::filter('auth.basic', function()
{
return Auth::basic('username');
});
But now it's not possible, and the doc doesn't give a clue about how to. ...
Foredate asked 20/5, 2015 at 23:54
1
When visiting my website that is protected w/ HTTP basic authentication in either Chrome or Brave the browser will re-prompt upon each page reload. Visiting the same page in either Firefox or Safar...
Numismatology asked 4/2, 2022 at 18:24
7
Solved
When a server allows access via Basic HTTP Authentication, what is the experience expected to be in a web browser?
Ignoring the web browser for a moment, here's how to create a Basic Auth request w...
Tsuda asked 11/1, 2010 at 19:29
3
I'm using spring boot security to help me to make authentication...
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</...
Leanoraleant asked 6/9, 2017 at 0:27
5
Solved
I need to provide http-basic-auth to one view.
I want to avoid modifying the middleware settings.
Background: This is a view which gets filled in by a remote application.
Weems asked 26/9, 2017 at 12:31
3
Solved
I am trying to enter data in prompt (URL Given), below codes is giving me an error. Please help me out with these?
from selenium import webdriver
from selenium.webdriver.common.action_chains impor...
Scopolamine asked 26/7, 2017 at 13:38
3
Solved
I have developed an API in flask which is using HttpBasicAuth to authenticate users. API is working absolutely fine in fiddler and returning 401 when we pass wrong credential but when I am using th...
Marianamariand asked 28/7, 2015 at 2:54
1 Next >
© 2022 - 2025 — McMap. All rights reserved.