Closed
Description
Hi All,
I have used fetch to server and not use timeout in android. Information request:
- Time request: about 10seconds
- Method request: POST
I have error as below for both HTTPS and HTTP. I try to research for this issue but not solution. I hope receive from your support.
May be, we have issue timeout in Timeout XMLHttpRequest #26240. But it only close and not solution.
Code:
return fetch(urlFull, {
method: "POST", // *GET, POST, PUT, DELETE, etc.
mode: "cors", // no-cors, cors, *same-origin
cache: "no-cache", // *default, no-cache, reload, force-cache, only-if-cached
credentials: "same-origin", // include, *same-origin, omit
headers: {
"Content-Type": "application/x-www-form-urlencoded"
// "Content-Type": "application/json"
},
redirect: "follow", // manual, *follow, error
referrer: "no-referrer", // no-referrer, *client
body: qs.stringify(data)
// body: JSON.stringify(data)
})
.then(res => res.json())
.then(response => {
console.log("response", response);
return {
data: response
};
})
.catch(error => console.error("Error:", error));