friendfeed

Can anyone provide me some information in integrating FriendFeed API


Integrating FriendFeed API thorough PHP, How can I acheive that. I am developing a website where in i want to integrate FriendFeed..


Solution

  • Check out this sample code

    include("friendfeed.php");
    include("JSON.php");
    
    //Connect
    $friendfeed = new FriendFeed("yourusername", "yourpassword");
    
    //Sample code to post data via the API
    $entry = $friendfeed->publish_message("Testing the FriendFeed API");
    
    //Sample PHP code to get data for a specific users feed via the FriendFeed API
    //The below gets the first 30 entries in that users feed
    
    $feed = $friendfeed->fetch_user_feed("some_random_user_name", 0, 0, 30);
    foreach ($feed->entries as $entry) {
     //get the image of the service, and its name (eg twitter, googlereader...)
     $output .= '<img src="' . $entry->service->iconUrl . '" alt="'. 
     $entry->service->name . '" />';
    
     //get the title of the entry and link to it
     $output .= $entry->service->name.'<a href="'.$entry->link.'">'.
     $entry->title.'</a>';
    
     //get the date of the entry
     $output .= date('Y m d', $entry->published);
    
    }
    
     echo $output; //prints the entry title, icon and link to the entry
    

    Here is the source for further reference.