通过PHP集成FriendFeed API,我该如何实现。我正在开发一个网站,我希望整合FriendFeed ..
答案 0 :(得分: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
Here是进一步参考的来源。
答案 1 :(得分:0)
请检查此链接,它可以帮助您获得整合FriendFeed的所需结果..
http://code.google.com/p/friendfeed-api/wiki/ApiDocumentation