My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Links

a Java client library for the FriendFeed API

Features

  • compatible with Java 5 and Java 6
  • compatible with Android 1.0 Dalvik VM
  • supports HTTP compression (gzip)

Example

  import com.friendfeed.api.*;

  FriendFeedService friendfeed = new FriendFeedServiceImpl();
  friendfeed.setUseCompression(true);

  List<Entry> pub = friendfeed.fetchPublicFeed();
  
  List<Entry> lolcatz = friendfeed.fetchRoomFeed("lolcatz");

  List<Entry> searchResult = friendfeed.search("economy");
 

Implementation details

  • the library processes JSON responses from friendfeed.com
  • the library uses Google GSON to transform JSON strings to Java objects
  • the library uses Apache HttpClient 4 to send HTTP requests
Powered by Google Project Hosting