I've been coding a website using and modifying Bootstrap template. End of summer I left the site as it was, but once returning there recently I noticed the Facebook activity feed (newests posts and such) had dissappeared from my front page. Reading from Facebook Developers; after the release of Graph Api 2.5 adding Facebook feed on your website is no longer possible? Is there any other way to get the Facebook feed back on the site? I had been using iframe on my site while it was still working.
Embedded Facebook feed on website not possible after Graph Api 2.5?
132 Views Asked by Koo At
1
There are 1 best solutions below
Related Questions in FACEBOOK-GRAPH-API
- Facebook Post Images from local system on own Page
- How can I get posts from a facebook page using the graph API?
- Not getting all leads from Meta/Facebook using webhook for page leadgens
- Unsupported post request when trying to create a custom audience via the endpoint https://graph.facebook.com/lapi-version), (custom-audience-id/users)
- Page access token
- Facebook login via JS-SDK via OAuth will get stuck half-way
- Python - Facebook Check For Duplicate Post Before Posting
- Facebook Graph API - Story endpoint does not return all active stories
- Can't set permissions in Graph API Explorer tool
- My Authentication is not working in published mode
- Can I get my comment's reactions in FB Graph API Explorer
- Facebook GraphAPI: page subscribed_apps with subscribed_fields messages is not working
- Get Ad Account Billing Payment Transactions
- How to get a person’s username by his ID without a request to the graph?
- I am having trouble understanding the docs for Facebook Login SDK
Related Questions in FACEBOOK-IFRAME
- How is facebook setting its cross-domain datr cookie from an iframe?
- Embed a url in angular
- Facebook embedded Reel?
- Facebook page embedding not working for iFrames in any browser
- I'm loading a angular app uplaoded on firebase in facebook webview. Getting refused to frame error
- Facebook post embed not scrollable
- How to apply iframe video link on website?
- Facebook like button iframe appears very small on react-native webview
- Facebook iframe page plugin doesn't work with "." (dot)
- How can I limit the number of posts that load in the Facebook Page Plugin?
- Embed dozens of comments from Facebook's iframes on a website
- Weird iframe width bug on facebook embed code
- How to fix facebook sharer button that appears cutted on wordpress
- Facebook page iFrame display problem in Boostrap Template while using Laravel as backend to send iframe code
- IE11 ignores X-Frame-Options after redirect
Related Questions in FACEBOOK-FEED
- i don't receive any comment in webhook but i receive message in developers facebook panel
- Feeds List having text, image and video with auto Play/Pause on Scroll in Flutter
- facebook feed page plugin error: Uncaught SyntaxError: Unexpected token ':'
- how can I get picture from post that published public "Buy and Sell" group?
- How can I get the name of the user that published post in a public Facebook group?
- How do I get real-time facebook page feed in my webhook?
- Facebook feed generation
- Facebook Feed Dialog - Post without a link
- Facebook API page feed didn't send information to my webhook?
- How to get user name in response of request getting feeds of group in iOS application?
- facebook api feed picture not showing
- Facebook ads - Products feed - Multiple shipping zones setting
- Getting images from FB posts to my website
- Facebook Feed Dialog doesn't always show image
- facebook is not showing image and video after share using feed dialog
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There are two main steps involved in embedding Facebook page feed in your website- 1. Getting Facebook Access Token, 2. Calling the Graph API passing the access token.
1. Getting the access token - Here is the step by step process to get the access token for your Facebook page. - Embed Facebook page feed on my website. As per this you need to create an app in Facebook developers page which would give you an App Id and an App Secret. Use these two and get the Access Token.
2. Calling the Graph API - This would be pretty simple once you get the access token. You just need to form a URL to Graph API with all the fields/properties you want to retrieve and make a GET request to this URL. Here is one example on how to do it in asp.net MVC. Embedding facebook feeds using asp.net mvc. This should be pretty similar in any other technology as it would be just a HTTP GET request.
Sample FQL Query:
https://graph.facebook.com/FBPageName/posts?fields=full_picture,picture,link,message,created_time&limit=5&access_token=YOUR_ACCESS_TOKEN_HERE