PHP function to get Facebook status? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T22:10:31Zhttp://stackoverflow.com/feeds/question/383777http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/383777/php-function-to-get-facebook-status1PHP function to get Facebook status?Bryan Denny2008-12-20T21:44:22Z2009-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#3837854Answer by TonyUser for PHP function to get Facebook status?TonyUser2008-12-20T21:53:54Z2008-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#3838051Answer by jasonrm for PHP function to get Facebook status?jasonrm2008-12-20T22:09:07Z2008-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]&viewer=[viewer]&key=[key]&format=rss20</code></p>
http://stackoverflow.com/questions/383777/php-function-to-get-facebook-status/384278#3842781Answer by Bryan Denny for PHP function to get Facebook status?Bryan Denny2008-12-21T09:03:44Z2008-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> <?php
require_once('facebook/php/facebook.php');
$facebook = new Facebook("YOUR_API_KEY","YOUR_SECRET_KEY");
$result = $facebook->api_client->fql_query("SELECT status FROM user WHERE uid = YOURIDNUMBER");
// OR --- they both get the same data
$result = $facebook->api_client->users_getInfo(YOURIDNUMBER,'status');
print_r($result);
echo "<pre>Debug:" . print_r($facebook,true) . "</pre>"; // debug info
?>
</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&v=1.0&ext_perm=offline_access" rel="nofollow">http://www.facebook.com/authorize.php?api_key=YOUR_API_KEY&v=1.0&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#4040170Answer by Bryan Denny for PHP function to get Facebook status?Bryan Denny2008-12-31T20:55:58Z2008-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#4115460Answer by Bryan Denny for PHP function to get Facebook status?Bryan Denny2009-01-04T19:35:07Z2009-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>