422
Unprocessable Content
422 durum kodunun genel açıklaması
Bu metin bloğu ne yazık ki sadece İngilizce olarak mevcuttur.
The HTTP status code 422 Unprocessable Content is usually returned when the server received the client's request but could not process it due to a semantic error.
This essentially means that the client's request was not understood or accepted by the server because it may have been incomplete or incorrect. A common example of this is when the client attempts to send a form request to the server, but the form field was not filled in correctly.
The server will usually also send back a message in the body of the response giving more details about why the request is unprocessable. It is then up to the client to read and correct this information in order to make a successful request to the server.
HTTP durum kodu 422'ün belirtimi
422 Unprocessable Content durum kodu, sunucunun istek öğesinin içerik türünü anladığı (dolayısıyla 415 (Desteklenmeyen Ortam Türü) durum kodu uygun değildir) ve istek öğesinin sözdiziminin doğru olduğu (dolayısıyla 400 (Hatalı İstek) durum kodu uygun değildir) ancak içerdiği yönergeleri işleyemediği anlamına gelir. Örneğin, bir XML istek gövdesi iyi biçimlendirilmiş (yani, sözdizimsel olarak doğru), ancak anlamsal olarak hatalı XML yönergeleri içeriyorsa bu hata durumu oluşabilir.
Kaynak / Alıntı: 422 Unprocessable Content HTTP durum kodu RFC4918 bölümünün 11.2 kısmında belirtilmiştir.
HTTP protokolü
PHP ile 422 durum kodu nasıl atılır?
Bir web sayfasında HTTP durum kodu 422'ü atmak için PHP işlevi http_response_code kullanılabilir. Sözdizimi aşağıdaki gibidir: http_response_code(422) (PHP 5 >= 5.4.0, PHP 7, PHP 8)
422 HTTP Durum Kodunu Test Etme
HTTP durum kodunu (bu durumda 422 Unprocessable Content) ve istemci tarafındaki diğer bilgileri görüntüleyebilmek için geliştirme konsolu F12 ile açılmalıdır. Ardından "Ağ" sekmesine gidin. Artık sayfa açılabilir, web sitesi (örnek index.php) ağ sekmesinde görünür olmalıdır. Bu seçilmeli ve ardından Herder bölümü seçilmelidir. Kullanıcı daha sonra aşağıdaki sonucu görecektir:
URL: https://http-statuscode.com/errorCodeExample.php?code=422
Durum: 422 Unprocessable Content
Şunlar: Network
IP adresi: XX.XX.XX.XX
Durum kodu 422 için kendi hata sayfanızı nasıl oluşturursunuz?
Apache Webserver
"Apache" web sunucusu internetteki en yaygın web sunucularından biridir. "Apache" de kendi 422 Unprocessable Content hata sayfanızı oluşturmak için aşağıdaki dosyada aşağıdaki değişiklik yapılmalıdır.
NGINX Webserver
"Apache" web sunucusuna benzer şekilde "NGINX" de internette yaygın olarak kullanılmaktadır. "NGINX" de kendi 422 Unprocessable Content hata sayfanızı oluşturmak için aşağıdaki dosyada aşağıdaki değişiklik yapılmalıdır.
location = /422.html {
root /usr/share/nginx/html;
internal;
}
422 durum kodunun tarayıcı uyumluluğu
Chrome | no data |
Edge | no data |
Firefox | no data |
Opera | no data |
Safari | no data |
Chrome Android | no data |
Firefox for Android | no data |
Opera Android | no data |
Safari on iOS | no data |
Internet | no data |
WebView Android | no data |
Programlama dillerinde sabitler
http.StatusUnprocessableEntity
Response::HTTP_UNPROCESSABLE_ENTITY
http.HTTPStatus.UNPROCESSABLE_ENTITY
:unprocessable_entity