Which HTTP status code to say username or password were incorrect?

26,495

If you use HTTP authentication as defined by RFC 7235, 401 would be correct (for missing or incorrect credentials).

Otherwise, use 403.

Share:
26,495
Nodari Lipartiya
Author by

Nodari Lipartiya

Updated on November 15, 2020

Comments

  • Nodari Lipartiya
    Nodari Lipartiya over 3 years

    I am implementing a simple registation/login module.

    While testing user credentials, I start thinking which HTTP status code will be appropriate, for the situation if a user send a request with incorrect credentials.

    At first, I thought 401 Unauthorized would be a nice status code, but it seems it will be better to use it when a user is trying to get some resource without authorisation.

    After, I switched to 409 Conflict

    This code is only allowed in situations where it is expected that the user might be able to resolve the conflict and resubmit the request.

    So, friends, please give me an advise, which status code should be used.