6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

HTTPステータスコード422とは

Last updated at Posted at 2021-09-16

HTTPステータスコードとは

HTTPリクエスト(GET POSTなど)をした時HTTPレスポンスと一緒に返ってきて今の処理の結果を人に3桁の番号で伝えてくれるものです。

ex)

200 正常
400 リクエストのミス
404 そういうものはない

などが代表的です。

422とは

422 Unprocessable Entity(処理ができないもの)のことで、コードや文法、リクエストは間違っていないが、意味が間違っているため、うまく処理ができないもののことです。

自分の場合はバリデーションは関係ありませんでしたが、バリデーションが原因の場合がよくあるみたいです。

参考資料

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?