I'm trying to make an API call using react. My code looks similar to the below one. When I try it, I'm getting an logging error(404-page not found).
componentDidMount() {
this.setState({loading: true})
fetch('https://jsonplaceholder.typicode.com/users', {
headers: new Headers({
Authorization: "Bearer XXXXXXXXXXXXXXXXXXXXX",
"Content-Type": "application/json"
}),
method: "GET",
mode: 'no-cors'
})
Please help me with the issue.