3,328 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
100
views
Is it possible to implement Basic Authentication in YARP (ASP.NET Reverse Proxy)?
I’m trying to find out whether it’s possible to implement Basic Authentication directly in YARP (Yet Another Reverse Proxy).
If YARP doesn’t natively support Basic Auth, that’s fine — I’m mainly ...
-2
votes
1
answer
155
views
Detect Http Basic Authentication in Playwright
I am writing a playwright based crawler that encounters various Http Basic Authentication sites.
I would like to detect these sites, abort the crawling, and catalog them as sites that I know to be ...
0
votes
1
answer
102
views
Basic authentication — two requests from Excel Power Query
I have a very simple data providing PHP script that uses basic authentication.
if( !isset( $_SERVER[ 'PHP_AUTH_USER' ] ) ) :
header( 'WWW-Authenticate: Basic realm="My Realm"' );
...
0
votes
0
answers
119
views
.NET Selenium Driver with Authentication - Handling Authentication Failure
With .NET and Selenium, I'm using Chrome drivers to navigate pages and retrieve their content.
Consider the following code where I use basic authentication to retrieve a page content. I'm targeting ....
0
votes
0
answers
184
views
How to handle HTTP Basic Authentication on Safari Browser
Our web application is secured with HTTP Basic Authentication. For Chrome and Edge, we successfully bypass the authentication prompt by embedding the username and password directly into the URL like ...
1
vote
0
answers
205
views
C# / RestSharp API call blocked in DEV environment behind Cloudflare – works in Postman
I’m running into a strange issue with a POST request to an OAuth /oauth/token endpoint hosted by JobTeaser behind Cloudflare, and I’d like to know if there’s anything I should adjust in my C# code (...
0
votes
0
answers
47
views
How to avoid ValidProxyAuthenticationRequired web error status while authenticating to a proxy server in Microsoft Edge WebView2 control
I have the following C# code to initialize and to use a proxy server with Microsoft Edge WebView2 control (v.1.0.3179.45):
var proxyAddress = ...
var proxyPort = ...
var proxyUserName = ...
var ...
-2
votes
1
answer
114
views
Spring Security - JWT and Basic Auth for different patterns [closed]
I do struggle in adding Basic Auth side by side with JWT securing separate endpoints. I've tried multiple ways, also this from earlier posts Configure multiple authentication types wit spring security ...
1
vote
0
answers
68
views
How to use static users for authentication and authorization?
how can we create static users and assign various levels of access to these users using the basic_auth.ini file?
[mlflow]
default_permission = READ
database_uri = <postgres-url>
admin_username = ...
0
votes
1
answer
206
views
How do I add basic authentication on certain API calls in an ASP.NET Core website using Identity
I have an ASP.NET Core web application that is using Identity for authentication and authorization. This allows me to register users easily in the website and it all works as expected.
However, the ...
0
votes
0
answers
60
views
How to share accessToken from frontend to backend when using KeyCloak as an IAM?
I'm looking into implementing auth for a React/Node application using KeyCloak.
Most of the tutorials I've followed introduce the following flow:
User visits page
User signs in to KeyCloak
On ...
0
votes
0
answers
48
views
Basic auth application - public or private login endpoint for first call
I would like to know if what an old backend application that we use is wrong or not.
This application uses basic auth to provide authentication. This means that every single request done towards its ...
0
votes
1
answer
181
views
Mozilla inbuilt login authentication prompt issue - buggy login user experience
We are currently experiencing an issue with our configured SailPoint IdentityIQ Single Sign-On, which uses Basic Authentication.
Issue Description
First, the login button needs to be clicked multiple ...
0
votes
1
answer
275
views
How to Scrape Data from Bayut (DLD-Validated Properties) Without Getting 401 Error?
I'm scraping real estate data from Bayut using Scrapy but can't extract thethe green tick (DLD-validated info)
The information is fetched via a POST API with basic authentication.
Calling the API in ...
1
vote
1
answer
132
views
Papertrail API returns 401 Unauthorized in Babashka script despite valid token
I'm using Heroku with the Papertrail add-on to manage my server logs. However, I'm not satisfied with Papertrail’s UI and would like to pull logs locally using their API. To do this, I'm writing a ...