Log [Typeerror: Network Request Failed] React Native
I've Been Trying to Fetch Data from Django, So I Can Create a React Native App, I Wrote the Same Method Using useEffect, and It Worked with Me When I Created...
I've been trying to fetch data from Django , so I can create a react native app, I wrote the same method using useEffect,and it worked with me when I created web app, and now when I use it with react native, I still got [TypeError :Network request failed ], is it because the Token?
useEffect(()=>{
fetch('
method:'GET',
headers:{
'Authorization':`Token f4136c8a15e73530edf6660d0062813362f6a02b`,
}
}).then(resp=>resp.json())
.then(resp=>console.log(resp))
.catch(error=>console.log(error))
},[])