Bunun gibi bir URL alıyorum:
fetch(url, {
mode: 'no-cors',
method: method || null,
headers: {
'Accept': 'application/json, application/xml, text/plain, text/html, *.*',
'Content-Type': 'multipart/form-data'
},
body: JSON.stringify(data) || null,
}).then(function(response) {
console.log(response.status)
console.log("response");
console.log(response)
})
API'm verilerin olmasını bekliyor, multipart/form-data
bu yüzden content-type
bu türden kullanıyorum ... Ama bana 400 durum kodu ile bir yanıt veriyor.
Kodumun nesi var?