HTTP 415
4xx İstemci Hatası
HTTP 415: Unsupported Media Type (Desteklenmeyen Medya Türü)
Sunucu, istemcinin gönderdiği `Content-Type` formatını (örneğin JSON yerine XML veya SVG) desteklemiyor.
⚠️ HTTP 415 Neden Meydana Gelir?
JSON bekleyen bir API rotasına `text/plain` veya geçersiz MIME tipiyle veri gönderilmesi.
🛠️ Nasıl Çözülür ve Düzeltilir?
İstemci başlığında `Content-Type: application/json` tanımlayın.
Sunucu Yapılandırma (Nginx / Web):
# Content-Type Doğrulama
proxy_set_header Content-Type "application/json";
cURL Test Komutu:
curl -H "Content-Type: text/plain" -X POST https://bilgiseli.net/api/articles