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.

How can I use Basic HTTP Authentication in PHP?

I'm trying to use Basic HTTP Authentication and followed the example on the PHP manual page. But it doesn't work …

php authentication http-authentication basic-authentication server-variables
How can I retrieve Basic Authentication credentials from the header?

I am trying to write some simple tests User Authentication mechanism which uses Basic Authentication. How can I retrieve the …

c# .net authentication basic-authentication
WSDL to PHP with Basic Auth

I need to build php classes from a WSDL that is behind basic auth. It has tons of namespaces so …

php soap wsdl basic-authentication
How do I do HTTP basic authentication using Guzzle?

I want to do basic access authentication using Guzzle and I am very new to programming. I have no clue …

php http basic-authentication guzzle
PowerShell's Invoke-RestMethod equivalent of curl -u (Basic Authentication)

What is the equivalent of curl -u username:password ... in PowerShell's Invoke-RestMethod? I tried this: $securePwd = ConvertTo-SecureString "password" -AsPlainText -Force $…

powershell curl basic-authentication
Preemptive Basic Auth with HttpUrlConnection?

What is the best way to use preemptive basic http authentication using HttpUrlConnection. (Assume for now I can't use HttpClient). …

java android http authentication basic-authentication
Preemptive Basic authentication with Apache HttpClient 4

Is there an easier way to setup the http client for preemptive basic authentication than what described here? In previous …

java basic-authentication apache-commons-httpclient
Adding Basic Authorization for Swagger-UI

I have currently deployed a swagger project but I am having trouble adding some basic authorization to it. Currenty when …

basic-authentication swagger swagger-ui
ASP.net Web API RESTful web service + Basic authentication

I'm implementing a RESTful web service using ASP.Net Web Api. I have concluded to use Basic authentication + SSL to …

asp.net-web-api basic-authentication restful-authentication
Converting curl cmd to jQuery $.ajax()

I'm trying to make a api call with jquery ajax, I have curl working for the api, but my ajax …

jquery ajax curl basic-authentication