在follow上认证你的博客

第一步先要让博客支持rss。

我使用的博客引擎是hexo,官方支持输出atom 1.0和rss 2.0源。

安装hexo-generator-feed插件,然后在_config.yml中添加:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
feed:
enable: true
type:
- atom
- rss2
path:
- atom.xml
- rss2.xml
limit: 20
hub:
content:
content_limit: 140
content_limit_delim: ' '
order_by: -date
icon: icon.png
autodiscovery: true
template:

第二步,在follow上订阅自己的博客,网址是http://yourdomain.com/atom.xml或者http://yourdomain.com/rss2.xml

第三步,在follow上认证自己的博客。

认证有三种方法,随便选一种就行。

最简单的就是在_config.yml中修改description字段,认证完再改回来就行。