remix/middleware/auth · Interface

View Source

AuthFailure

Summary

Failure details for an unauthenticated request.

Signature

interface AuthFailure {
  challenge?: string
  code: 'missing_credentials' | 'invalid_credentials'
  message: string
  method?: string
}

Properties

challenge

Optional challenge value for WWW-Authenticate.

code

Failure category used by built-in auth middleware and schemes.

message

Human-readable explanation of the auth failure.

method

Auth method that reported the failure.