通过 Webmention 互动
什么是 Webmention?
Webmention 是一个开放的 Web 标准,允许网站之间互相通知。当你的文章引用了其他网站的文章时,你可以通过 Webmention 通知对方。
互动方式
根据你想进行的互动类型,你的页面需要包含对应的 microformats2 标记:
1. 点赞 (Like)
<div class="h-entry">
<a class="u-like-of" href="/cross.html?replyTo=12"></a>
<a class="u-author h-card" href="你的网站地址">
<img class="u-photo" src="你的头像URL" alt="你的名字">
</a>
</div>
2. 转发 (Repost)
<div class="h-entry">
<a class="u-repost-of" href="/cross.html?replyTo=12"></a>
<a class="u-author h-card" href="你的网站地址">
<img class="u-photo" src="你的头像URL" alt="你的名字">
</a>
</div>
3. 回复 (Reply)
<div class="h-entry">
<a class="u-in-reply-to" href="/cross.html?replyTo=12"></a>
<p class="p-name">你的记录标题</p>
<p class="e-content">你的回复内容</p>
<a class="u-author h-card" href="你的网站地址">
<img class="u-photo" src="你的头像URL" alt="你的名字">
<span class="p-name">你的名字</span>
</a>
</div>
发送你的互动
在你的页面中添加上述 microformats2 标记后,在下方输入框中输入你页面的地址,点击“发送”将你的互动通知给本站。