skip to Main Content

Facebook api – Facebook Messenger Platform Send API unexpected internal error

I'm working on my framework for Facebook Messenger Platform Send API and I've got this error when trying to create an Airline Itinerary Template (https://developers.facebook.com/docs/messenger-platform/send-api-reference/airline-itinerary-template): { "error": { "message": "(#-1) Send API unexpected internal error", "type": "OAuthException", "code": -1, "fbtrace_id":…

VIEW QUESTION

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

Facebook api – Get number of likes for a webpage from facebook

I used to get the number of likes for my webpage from facebook with: http://api.facebook.com/restserver.php?method=links.getStats&format=json&urls=www.example.com But this doesn't work anymore. I tried: https://graph.facebook.com/fql?q=SELECT%20total_count%20FROM%20link_stat%20WHERE%20url=%22www.example.com%22 But this doesn't work either. I tried: http://graph.facebook.com/?ids=http%3a%2f%2fwww.example.com But this gives me only the share_count, not the…

VIEW QUESTION
Back To Top
Search