Authentication Test Servers

后端 未结 3 1316
情书的邮戳
情书的邮戳 2020-12-13 06:29

I\'m searching for examples of public HTTPS sites that use one of the following authentication types - these sites will be used as test servers for an appli

3条回答
  •  我在风中等你
    2020-12-13 06:59

    httpbin.org has public endpoints for HTTP Basic and Digest Authentication (in each example, replace :user and :passwd with the test values you'd like to check against - :qop, too, for Digest):

    • /basic-auth/:user/:passwd Challenges HTTPBasic Auth.
    • /hidden-basic-auth/:user/:passwd 404'd BasicAuth.
    • /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.

    Each endpoint is available in both HTTP and HTTPS.

提交回复
热议问题