skip to Main Content

Facebook api – React Native fetch Network request failed iOS

I'm trying to send a GET request to the Facebook Graph API using fetch: var url = "https://graph.facebook.com/v2.7/" +FACEBOOK_APP_ID +"?fields=context" +"{friends_using_app{id,name,picture.type(normal)}}" +"&access_token="+_this.props.user.facebook_access_token; fetch(url) .then((response) => response.json()) .then((responseJson) => { console.log(responseJson); }) .catch(function(error) { console.log(error); }); But I'm getting TypeError: Network…

VIEW QUESTION
Back To Top
Search