tags:

views:

149

answers:

1

Hi, Can anyone point out a blog search API in Java ? Looked at the Bloglines search API but could not find a Java-based API there.

+1  A: 

The Bloglines Search API is language independent (as is a Web Service), you can hit their API from Java for sure. (more here).

Anyway, I guess that what you are looking for is for a Java Library for access their Search API, probably will work for you JBloglines (is the first hit on a google result, no idea of how good is it).

Good luck!

David Santamaria
JBloglines "last commit on 2004-12-02" that says it all
jitter
Ops, you are totally right. Just copy the first hit of google (as said before), anyway, If you are writing Java should be eassy enough write a class for that WS.
David Santamaria
Thanks for the help. You were correct, its easy enough to hit the search api from Java code and get the results. I just did that and its pretty much what I want at this time :)
Abhinav Tripathi
then accept the answer
Arkaitz Jimenez