0

通过 PHP 集成 FriendFeed API,我该如何实现。我正在开发一个网站,我想在其中集成 FriendFeed ..

4

1 回答 1

2

查看此示例代码

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

是进一步参考的来源。

于 2011-06-27T11:50:45.353 回答