Httpbin

Auth

Auth methods

Prompts the user for authorization using HTTP Basic Auth.

get
https://httpbingo.org/basic-auth/{user}/{passwd}

Path Parameters

userstringrequired
passwdstringrequired

Response

Sucessful authentication.

 

Prompts the user for authorization using bearer authentication.

get
https://httpbingo.org/bearer

Headers

Authorization

Response

Sucessful authentication.

 

Prompts the user for authorization using Digest Auth.

get
https://httpbingo.org/digest-auth/{qop}/{user}/{passwd}

Path Parameters

qopstringrequired

auth or auth-int

userstringrequired
passwdstringrequired

Response

Sucessful authentication.

 

Prompts the user for authorization using Digest Auth + Algorithm.

get
https://httpbingo.org/digest-auth/{qop}/{user}/{passwd}/{algorithm}

Path Parameters

qopstringrequired

auth or auth-int

userstringrequired
passwdstringrequired
algorithmstringrequired

MD5, SHA-256, SHA-512

Default:MD5

Response

Sucessful authentication.