Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7671119
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T15:58:40+00:00 2026-05-31T15:58:40+00:00

I’m attempting to pull out a page feed to RSS from Facebook, however each

  • 0

I’m attempting to pull out a page feed to RSS from Facebook, however each time I attempt to try it, I get an error back in the XML with the following :

<![CDATA[
This feed URL is no longer valid. Visit this page to find the new URL, if you have access: &lt;a href=&quot;https://www.facebook.com/profile.php?id=<FB_ID>&quot;&gt;https://www.facebook.com/profile.php?id=<FB_ID>&lt;/a&gt;
]]>

The URL I’m using is:

https://www.facebook.com/feeds/page.php?id=<fb_id>&format=rss20&access_token=<my_page_token>

I don’t have an age restriction set nor a country restriction:
enter image description here

Further, I’ve tried it with and without my access token.

As noted in the comments below, the JSON URL is indeed working:

https://graph.facebook.com/<page_name>/feed&https://www.facebook.com/<page_name>/‌​feed?access_token=<token>

What is going on here / how do I resolve the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T15:58:41+00:00Added an answer on May 31, 2026 at 3:58 pm

    I got with the same problem. After looking for a solution I found that FB silently killed public RSS support. (see this post from Jesse Stay)

    I understood that I needed to call the API myself and construct the feed (I also need the feed to be parsed by a WP plugin and other stuff.

    So, first of all get an API key (also called app id) and download the PHP Facebook SDK.

    Then download the Universal Feed Generator PHP class. It will generate all the required headers and xml for you.

    Your php script will be like this:

    require('lib/facebook.php'); // require your facebook php sdk
    include("feed_generator/FeedWriter.php"); // include the feed generator feedwriter file
    
    $fb = new facebook(array(
        'appId' =>  'YOUR_APP_ID', // get this info from the facebook developers page
        'secret'=>  'YOUR_SECRET_KEY' // by registering an app
    ));
    $response = $fb->api('/spreetable/feed','GET'); // replace "spreetable" with your fb page name or username
    
    // create the feedwriter object (we're using ATOM but there're other options like rss, etc)
    $feed = new FeedWriter(ATOM);
    
    $feed->setTitle('Spree Table'); // set your title
    $feed->setLink('http://spreetable.com/facebook/feed.php'); // set the url to the feed page you're generating
    
    $feed->setChannelElement('updated', date(DATE_ATOM , time()));
    $feed->setChannelElement('author', array('name'=>'Spree Table')); // set the author name
    
    // iterate through the facebook response to add items to the feed
    foreach($response['data'] as $entry){
            if(isset($entry["message"])){
                $item = $feed->createNewItem();
                $item->setTitle($entry["from"]["name"]);
                $item->setDate($entry["updated_time"]);
                $item->setDescription($entry["message"]);
                if(isset($entry["link"]))
                    $item->setLink(htmlentities($entry["link"]));
    
                $feed->addItem($item);
            }
    }
    
    // that's it... don't echo anything else, just call this method
    $feed->genarateFeed();
    

    Note from the future (2013-07-09): Don’t listen to my answer anymore. It’s old. Facebook has a new API with new features on its query language so don’t bother pulling feeds. Try to use their API in a more fun, intelligent way 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I am trying to understand how to use SyndicationItem to display feed which is
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a text area in my form which accepts all possible characters from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.