PHP function to get Facebook status? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T22:10:31Z http://stackoverflow.com/feeds/question/383777 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status 1 PHP function to get Facebook status? Bryan Denny 2008-12-20T21:44:22Z 2009-01-04T19:35:07Z <p>I'm looking for a good, simple PHP function to get my latest Facebook status updates. Anyone know of one?</p> <p>Thanks!</p> <p><strong>EDIT:</strong> I've added a half-solution below.</p> <p>Or if anyone knows a good way to read in the RSS feed and spit out the recent status update?</p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/383785#383785 4 Answer by TonyUser for PHP function to get Facebook status? TonyUser 2008-12-20T21:53:54Z 2008-12-20T21:53:54Z <p>A quick check on <a href="http://pear.php.net" rel="nofollow">PEAR</a> found <a href="http://pear.php.net/package/Services_Facebook" rel="nofollow">Services_Facebook</a></p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/383805#383805 1 Answer by jasonrm for PHP function to get Facebook status? jasonrm 2008-12-20T22:09:07Z 2008-12-20T22:09:07Z <p>I never seem to get along with PEAR, but if you have better luck than I, then the PEAR solution seems the best route long term.</p> <p>Another idea is to explore the <a href="http://developers.facebook.com/get_started.php" rel="nofollow">Facebook Developer API</a> library and see if that might give you anything you are looking for.</p> <p>Lastly, there used to be a way to get an RSS feed... but I can't seem to find any instructions that work anymore, but you might poke around Facebook help if that interests you. Mine ends up looking something like this:</p> <p><code>http://www.new.facebook.com/feeds/status.php?id=[idnumber]&amp;viewer=[viewer]&amp;key=[key]&amp;format=rss20</code></p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/384278#384278 1 Answer by Bryan Denny for PHP function to get Facebook status? Bryan Denny 2008-12-21T09:03:44Z 2008-12-21T10:12:21Z <p>This is an incomplete answer, but this is what I've gotten so far:</p> <p>First: <a href="http://www.facebook.com/developers/" rel="nofollow">add the developer application on FB</a>. Then create a new application. Call it whatever you want.</p> <p>Second: <a href="http://svn.facebook.com/svnroot/platform/clients/packages/facebook-platform.tar.gz" rel="nofollow">Download the PHP client.</a> Dump it somewhere on your webhost, i.e. /facebook/</p> <p>Third: Copy the following beginner code to get yourself started into a php file:</p> <pre><code> &lt;?php require_once('facebook/php/facebook.php'); $facebook = new Facebook("YOUR_API_KEY","YOUR_SECRET_KEY"); $result = $facebook-&gt;api_client-&gt;fql_query("SELECT status FROM user WHERE uid = YOURIDNUMBER"); // OR --- they both get the same data $result = $facebook-&gt;api_client-&gt;users_getInfo(YOURIDNUMBER,'status'); print_r($result); echo "&lt;pre&gt;Debug:" . print_r($facebook,true) . "&lt;/pre&gt;"; // debug info ?&gt; </code></pre> <p><strong>Other info:</strong></p> <ul> <li>You must be logged in and have the application added. OR you give the application offline_access permissions and have the aapplication added.</li> <li>You can add offline_access by typing in the following url: <a href="http://www.facebook.com/authorize.php?api_key=YOUR_API_KEY&amp;v=1.0&amp;ext_perm=offline_access" rel="nofollow">http://www.facebook.com/authorize.php?api_key=YOUR_API_KEY&amp;v=1.0&amp;ext_perm=offline_access</a></li> <li>more info on permissions found here: <a href="http://wiki.developers.facebook.com/index.php/Extended_permissions" rel="nofollow">http://wiki.developers.facebook.com/index.php/Extended_permissions</a></li> <li>I'm at a stopping point: anything my program calls the fql query or users_getInfo, my page stops executing the php? I'm guessing there are a limited amount of calls for new applications? I've never done any FB development so I'm completely new to it. Maybe make the call and save your recent status (or most recent statuses) in your own DB to prevent excessive calls to the API?</li> </ul> <p>I hope this helps someone get started! </p> <p><strong>EDIT:</strong> It seems that FB won't let you access someones status, even if the offline_access is on, unless you are that person or their friend (depending on their privacy settings).</p> <p>I did however, finally manage to find the RSS feed in the new profile version: <a href="http://www.new.facebook.com/minifeed.php?filter=11" rel="nofollow">http://www.new.facebook.com/minifeed.php?filter=11</a></p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/404017#404017 0 Answer by Bryan Denny for PHP function to get Facebook status? Bryan Denny 2008-12-31T20:55:58Z 2008-12-31T20:55:58Z <p>Does anyone know of a good way to do this via RSS instead of their API?</p> http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/411546#411546 0 Answer by Bryan Denny for PHP function to get Facebook status? Bryan Denny 2009-01-04T19:35:07Z 2009-01-04T19:35:07Z <p>Since I couldn't use the API route, I went with the RSS found at: <a href="http://www.new.facebook.com/minifeed.php?filter=11" rel="nofollow">http://www.new.facebook.com/minifeed.php?filter=11</a></p> <p>And used the following PHP function, <a href="http://www.paradoxica.net/2007/08/30/statuspress/" rel="nofollow">called StatusPress</a>, with some of my own modifications, to parse the RSS feed for my Facebook status. Works great!</p>