---
title: "Prompts the user for authorization using Digest Auth + Algorithm."
url: "https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f/operations/get_digest-auth_qop__user__passwd__algorithm"
---

> Full API specification: https://seriousmonkeybusiness.shermett.me/apis/httpbinorg-0/versions/cf5887fc-2a8e-440f-bf06-cb4d956f625f.md

# Prompts the user for authorization using Digest Auth + Algorithm.

`GET` `/digest-auth/{qop}/{user}/{passwd}/{algorithm}`

Operation ID: `get_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

## Responses

- `200` - Sucessful authentication.
- `401` - Unsuccessful authentication.

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: httpbin.org
  version: 0.9.2
servers:
  - url: https://httpbin.org
paths:
  /digest-auth/{qop}/{user}/{passwd}/{algorithm}:
    get:
      parameters:
        - description: auth or auth-int
          in: path
          name: qop
          required: true
          schema:
            type: string
        - in: path
          name: user
          required: true
          schema:
            type: string
        - in: path
          name: passwd
          required: true
          schema:
            type: string
        - description: MD5, SHA-256, SHA-512
          in: path
          name: algorithm
          required: true
          schema:
            default: MD5
            type: string
      responses:
        "200":
          description: Sucessful authentication.
        "401":
          description: Unsuccessful authentication.
      summary: Prompts the user for authorization using Digest Auth + Algorithm.
      tags:
        - Auth
      operationId: get_digest-auth_qop__user__passwd__algorithm
```
