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.

angularjs: $http basic authentication

I tried angular.js and started with a web-ui for a restful api (using http basic auth). It is really …

angularjs http-authentication basic-authentication angularjs-http
Soap client, how to call a function over HTTPS with Basic HTTP Authentication

This problem has been killing me for the entire day. I have a client web service https://*.asmx?WSDL, with …

php basic-authentication soap-client nusoap
Lumen HTTP Basic Authentication without use of database

I'm creating a RESTful API using Lumen and would like to add HTTP basic Authentication for security. On the routes.…

php laravel authentication basic-authentication lumen
How do I make a JSONP call with JQuery with Basic Authentication?

Using JQuery, how would I call a JSONP API that required basic authentication? Can I programatically handle this, or does …

jquery json jsonp basic-authentication
Setting Basic Auth in Mocha and SuperTest

I'm trying to set us a test to verify the username and password of a path blocked by the basic …

javascript node.js mocha.js basic-authentication supertest
How to register a custom BasicAuthenticationFilter AuthenticationProvider in Spring Boot using Spring Security OAuth2

Context I'm developing an application that allows an authenticated user to create OAuth2 bearer tokens for use with APIs published …

spring-security basic-authentication spring-boot spring-security-oauth2
HTTPClient sends out two requests when using Basic Auth?

I have been using HTTPClient version 4.1.2 to try to access a REST over HTTP API that requires Basic Authentication. Here …

java basic-authentication apache-httpclient-4.x
How do I make an HTTP Post with HTTP Basic Authentication, using POCO?

I'm trying to make an HTTP Post with HTTP Basic Authentication (cleartext username and password), using POCO. I found an …

c++ http post basic-authentication poco-libraries
How to return 401 authentication from flask API?

I have developed an API in flask which is using HttpBasicAuth to authenticate users. API is working absolutely fine in …

python-2.7 flask basic-authentication www-authenticate