Skip to content

Commit

Permalink
Merge pull request #57 from ivanovmg/fix/status-code-bad-request
Browse files Browse the repository at this point in the history
Fix status code for BadRequest in Section 13
  • Loading branch information
twirl authored Dec 4, 2024
2 parents 70b6768 + 49dbe6a commit 5fb91e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/en/clean-copy/02-Section I. The API Design/05.md
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ POST /v1/coffee-machines/search↵
"longitude": 0
}
}
404 Bad Request
400 Bad Request
{
"errors": [{
"type": "suspicious_coordinates",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ POST /v1/coffee-machines/search↵
"longitude": 0
}
}
404 Bad Request
400 Bad Request
{
"errors": [{
"type": "suspicious_coordinates",
Expand Down Expand Up @@ -1043,4 +1043,4 @@ POST /v1/run/sql

Следует отметить, что индикация, какие сообщения следует показать пользователю, а какие написаны для разработчика, должна, разумеется, быть явной конвенцией вашего API. В примере для этого используется префикс `localized_`.

И ещё одна вещь: все строки должны быть в кодировке UTF-8 и никакой другой.
И ещё одна вещь: все строки должны быть в кодировке UTF-8 и никакой другой.

0 comments on commit 5fb91e4

Please sign in to comment.