Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am curious if there are any libraries in Java (or perhaps web services that I can call) out there that previews links like it is done in Facebook.

Right now what I am doing is reading the URL using a new URL([url here]) and parsing the html to get to the content I want to print. This means removing unwanted tags and all.

But this is really too crude as it gets site specific.

Like in wordpress I'd have to read all the content under the <div class="post"></div> segment. In blogger it might be different and what of other sites around the world that serve only static text?

Is there a better solution?

share|improve this question

1 Answer

up vote 1 down vote accepted

In most cases you should check the meta tag:

<meta name="description" content="here is some description"/>

I think this may be useful.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.