Top "Basic-authentication" questions

Basic authentication is a method for a web browser or other client program to provide a user name and password when making a request.

Built-in way to do Basic Authentication with WCF REST service?

I am using Basic Authentication in my WCF service. And also using ASP Membership provider for authentication. Web.Config: For …

c# ajax wcf basic-authentication wcf-rest
RestTemplate basic or digest Authentication with the current httpclient (4.x)

I'm trying to do Digest mostly (or Basic) Authentication using RestTemplate and httpclient (4.x). Since I couldn't find any relevant …

spring restful-authentication http-authentication basic-authentication resttemplate
Basic authentication with header - Javascript XMLHttpRequest

I am trying to access Adyen test API that requires basic authentication credentials. https://docs.adyen.com/developers/ecommerce-integration My …

javascript xmlhttprequest cors basic-authentication adyen
Rails 3 http_basic_authenticate_with only in production environment?

is there a way to only use http_basic_authenticate_with :name => 'user', :password => 'secret' when the server …

ruby-on-rails ruby-on-rails-3 basic-authentication
Solr 4 with basic authentication

I am trying to connect to solr using solrj. My solr instance runs in jetty and is protected with basic …

authentication solr jetty basic-authentication jetty-8
How to send username:password to unittest's app.get() request?

This is part of my unit test in Flask-RESTful. self.app = application.app.test_client() rv = self.app.get('api/…

python unit-testing flask basic-authentication flask-restful
HTTP 403 forbidden error in spring boot security

Spring security configuration class @Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter{ @Autowired private UserDetailsService userDetailsService; @Bean public PasswordEncoder getPasswordEncoder() { return …

spring spring-boot spring-security basic-authentication spring-security-rest
How do I use window.fetch() with httpOnly cookies or basic auth

I'm playing around with window.fetch() in Firefox and Chrome. For some reasons, fetch() doesn't send any cookies. Now that …

javascript dom cookies basic-authentication fetch-api
Adding HTTP Basic Authentication Header to Backbone.js Sync Function Prevents Model from Being Updated on Save()

I'm working on a web application that is powered by a restful API written with Python's CherryPy framework. I started …

javascript backbone.js http-headers cherrypy basic-authentication
How can I password-protect applications behind mod_proxy in Apache?

I have a number of web applications running in a Tomcat instance. They are fronted by an Apache instance, using …

apache tomcat passwords basic-authentication mod-proxy