Home > Blockchain >  Which of the HTTP response codes can be expected if we have an error while creating and inserting va
Which of the HTTP response codes can be expected if we have an error while creating and inserting va

Time:02-24

Which of the HTTP response codes can be expected if we have an error while creating and inserting value into a database?

CodePudding user response:

I usually use 500 Internal Server Error.

CodePudding user response:

Forbidden 403 Forbidden.

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated.

  • Related