React native – Expo fetch doesn't resolve when POSTing a body and getting a 401 in return
This has me stumped. I am working on the following: const testFetch = () => { console.log("testFetch"); fetch(`${baseurl}/${requrl}`, { method: "POST", body: JSON.stringify({ foo: "bar" }), headers: { "Content-Type": "application/json; charset=utf-8", Accept: "*/*", "Cache-Control": "no-cache", }, }) .then((response) => {…