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

what should be structure of website to retrieve site information in telegram?

有些网站在发送 link 时会在电报中检索信息,而有些网站不喜欢这样:

所以我的问题是网站有什么结构可以在电报中加载信息吗?

Open Graph protocol 使任何网页都可以成为社交图中的丰富对象,例如 Facebook、twitter、telegram、Skype 和...

例如,以下是 IMDB 上 The Rock 的开放图谱协议标记:

<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>

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

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