

fetch('https://facebook.github.io/react-native/movies.json')
.then((response) => response.json())
.then((responseJson) => {
return responseJson.movies;
})
.catch((error) => {
console.error(error);
})
It looks like fetch tries to use RNFetchBlob. Why? . Please someone should help quick.
Sorry, this is a bug tracker for a _polyfill_ of fetch() functionality in the browser, not a place to ask support questions on how to implement requests in your app on the server. Please ask usage questions on more appropriate forums such as Stack Overflow.