Sign up
Log in
Search
K
Log in
Sign up
Docs
Httpbin
Auth
Auth methods
Prompts the user for authorization using HTTP Basic Auth.
get
https://httpbingo.org
/basic-auth/{user}/{passwd}
Path Parameters
user
string
required
passwd
string
required
Response
200
Sucessful authentication.
Shell
200
Prompts the user for authorization using bearer authentication.
get
https://httpbingo.org
/bearer
Headers
Authorization
Response
200
Sucessful authentication.
Shell
200
Prompts the user for authorization using Digest Auth.
get
https://httpbingo.org
/digest-auth/{qop}/{user}/{passwd}
Path Parameters
qop
string
required
auth or auth-int
user
string
required
passwd
string
required
Response
200
Sucessful authentication.
Shell
200
Prompts the user for authorization using Digest Auth + Algorithm.
get
https://httpbingo.org
/digest-auth/{qop}/{user}/{passwd}/{algorithm}
Path Parameters
qop
string
required
auth or auth-int
user
string
required
passwd
string
required
algorithm
string
required
MD5, SHA-256, SHA-512
Default:
MD5
Response
200
Sucessful authentication.
Shell
200