Facebook RSS application - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T12:05:37Zhttp://stackoverflow.com/feeds/question/100038http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100038/facebook-rss-application2Facebook RSS applicationShinhan2008-09-19T06:26:52Z2008-09-26T08:52:26Z
<p>How can I make a Facebook RSS application that autoupdates from the provided RSS feeds.
Of course doing this is trivial for canvas applications, but I need this for showing on the Facebook Page. All the RSS apps I've taken a look at either dont update or dont work on Facebook Pages. </p>
<p>Especially now that infinite session keys are deprecated (and maybe even forbidden). </p>
http://stackoverflow.com/questions/100038/facebook-rss-application/100148#100148-1Answer by sobbayi for Facebook RSS applicationsobbayi2008-09-19T07:02:31Z2008-09-19T07:02:31Z<p>To get anything to show on the facebook canvass you need to first know that anything you do within the application resides out of the facebook servers, so its not so much about how it works on facebook but how it works on your servers. to link into the facebook pages you need to follow the instructions found here: <a href="http://wiki.developers.facebook.com/index.php/Creating_Your_First_Application" rel="nofollow">http://wiki.developers.facebook.com/index.php/Creating_Your_First_Application</a></p>
<p>and here is another good read:</p>
<p><a href="http://wiki.developers.facebook.com/index.php/FAQ" rel="nofollow">http://wiki.developers.facebook.com/index.php/FAQ</a></p>
<p>these should help you get all the help you need.</p>
http://stackoverflow.com/questions/100038/facebook-rss-application/100458#1004581Answer by Shinhan for Facebook RSS applicationShinhan2008-09-19T08:18:22Z2008-09-19T08:18:22Z<p>I specifically said I do not need this for canvas applications (as that is trivial to do), but on Facebook Pages!
This is done with <a href="http://wiki.developers.facebook.com/index.php/Profile.setFBML" rel="nofollow">profile.setFBML</a> and data published that way does reside on the facebook servers. </p>
http://stackoverflow.com/questions/100038/facebook-rss-application/100598#1005980Answer by Josh for Facebook RSS applicationJosh2008-09-19T08:57:11Z2008-09-19T08:57:11Z<p>You have two options. </p>
<ol>
<li><p>Convert your user session (when the user accesses your app manually) to infinite session, then periodically update the profile information for a user. There is some information on how to do this (and what API calls you can make without sessions) <a href="http://wiki.developers.facebook.com/index.php/Authorizing_Applications#About_Session_Keys" rel="nofollow">here</a>.</p></li>
<li><p>Create a new "handle" (see <a href="http://wiki.developers.facebook.com/index.php/Fb:ref" rel="nofollow"><code>fb:ref</code></a>) for each unique feed and update that handle whenever the feed changes. Handles are key-values pairs that are associated with your app, that you can include inline through FBML. This allows you to do a single call to the API that will update all users subscribed to a given feed.</p></li>
</ol>
<p>The second option is probably the best in the long run.</p>
http://stackoverflow.com/questions/100038/facebook-rss-application/138347#1383471Answer by Shinhan for Facebook RSS applicationShinhan2008-09-26T08:52:26Z2008-09-26T08:52:26Z<ol>
<li>Infinite sessions keys <a href="http://developers.facebook.com/news.php?blog=1&story=135" rel="nofollow">do not exist anymore</a></li>
<li>Every feed is unique. But even if it weren't, can I just stuff the fbml.refreshRefUrl in a cron job and it will work without session (because I can not get an infinite session)=
Or maybe I first need to request the offline_access extended permission?
Is there any way without using cron jobs?</li>
</ol>