开发者

Create summary from link

Many pages (facebook, google+ etc) have a function that creates a summary with header, image and some text from a link. I have tried to find out if there are any libraries or guidelines about how to do this kind of function but my search-results havn't been helpful at all.

I know that I can parse the html of a page and extract the elements I'd like but I think there should be some kind of standard in how to do this (perhaps also how to create pages that are friendly to this kind of functionallity.

Anyone that have a good link that will point me to the rig开发者_高级运维ht direction? Javascript or .Net is my prefered choise but I can implement it myself too.


For the "perhaps also how to create pages that are friendly to this kind of functionallity." part:
You are probably searching for the open graph protocol:

<html xmlns:og="http://ogp.me/ns#">
<head>
<title>The Rock (1996)</title>
<meta property="og:title" content="The Rock" />
<meta property="og:type" content="movie" />
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/" />
<meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" />
...
</head>
...
</html>

I think this is the first place facebook will look. But facebook seems to have its own algorithms to detect the most relevant part of the page when these tags are missing.


Many pages (facebook, google+ etc) have a function that creates a summary with header, image and some text from a link. I have tried to find out if there are any libraries or guidelines about how to do this kind of function but my search-results havn't been helpful at all.

Such a function is usually build using some kind of "crawling", meaning your script opens the link and looks at its data. Just like you suggest yourself.

I know that I can parse the html of a page and extract the elements I'd like but I think there should be some kind of standard in how to do this (perhaps also how to create pages that are friendly to this kind of functionallity.

Standard way is the way most search engines do it, like Google. You get the title from the title of the website, description from description if there are any. Most search engines now days ignore description meta data and instead try to make their own summary.

This is usual done by looking for headers (h1, h2, etc) ad then the paragraphs.

And to make a website "Friendly" for these kind of crawls you build your website according to web standards (W3C).

Anyone that have a good link that will point me to the right direction? Javascript or .Net is my prefered choise but I can implement it myself too.

Language really doesn't matter as long as it is capable of doing some basic HTTP-GET.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜