I’ve just posted a simple PHP class to github (free under MIT license) that will let you fetch the latest Twitter and Facebook posts. All you need is a developer key for both, then to include the PHP file and you’re set!
$social = new SebSoSocial($twitterAcc, $facebookAcc, $numOfEach); foreach ($social->posts as $post) { echo $post->date . " - " . $post->content; }
Full instructions and source code available here:
Leave a Reply