Hi Everyone I am new in ReactJS and also in Axios. I try to get data from Instagram Api and i want to render a Image if image has spesific letter in caption for example if caption has ‘Y’ letter should render on page otherwise not. With my code i render all post from profile but i cant sort the
Tag: facebook-graph-api
Problem sharing panoramic (360º) images on Facebook with Open Graph API
For the past few days I’ve been trying to share a image (this one: https://cdn.mooble.com/render-images/BD8F1639613D4A3D8E763D4C4B45C.jpg) on Facebook and I can’t get it to work with the interactive 360º view. If you download the image from the link and upload it manually the image works automatic…
How to retrieve all posts of a user via Facebook Graph API using promises and recursion?
I am currently developing a web app which uses the Facebook Graph API. What I would like to achieve is to get all posts of a user. However, this is not that easy since I have to paginate the results. At the moment I am struggeling with promises. What I try to achieve is to fill an array with the
Choosing most liked post from facebook group
Well, here is the json file http://herbalista.hol.es/group.json i am working with JSON.parse(); on Google apps script. I temporarily solve with this code by Choosing the post which have more than 15 likes, but i want to choose the one with more likes independently if have or not more than 15 likes. Answer For…
Loading external javascript in google chrome extension
I’m writing a Google Chrome extension which manipulates the current page (basically adds a button). In my content script, I want to load the Facebook Graph API: However, the script doesn’t seem to added to body. Here’s the console log: Any ideas on what I’m doing wrong? Answer The issu…