什么应该是网站的结构来检索电报中的网站信息?

时间:2015-07-13 06:05:53

标签: url web telegram

某些网站在发送链接时检测到电报中的信息,而某些网站不喜欢这样: enter image description here

所以我的问题是网站是否有任何结构可以在电报中加载信息?

2 个答案:

答案 0 :(得分:9)

Open Graph protocol可让任何网页成为Facebook,Twitter,电报,Skype等社交图谱中的丰富对象。

例如,以下是The Rock on IMDB的Open Graph协议标记:



<html prefix="og: http://ogp.me/ns#">
<head>
<title>The Rock (1996)</title>
<meta property="og:title" content="The Rock" />
<meta property="og:type" content="video.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>
&#13;
&#13;
&#13;

答案 1 :(得分:3)

只需使用带有名称描述的元标记:

<head>
<meta name='description' content="some content"/>
</head>