Hexo博客Next主题添加每日早报

通过Alapi提供的API实现每日早报的生成并在hexo博客中展示。​

Alapi官网注册

Alapi官网地址 https://www.alapi.cn/

获得Token密钥

接口管理更新Token密钥

生成

复制密钥放到下面的网址中:

1
https://v2.alapi.cn/api/zaobao?token=你的token密钥&format=image

API文档:每日60秒早报-ALAPI

插入文章

在Markdown文档中加入:

1
![](https://v2.alapi.cn/api/zaobao?token=你的token密钥&format=image)

Html页面

在html页面中加入:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>全屏图片展示</title>
<style>
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.full-screen-image {
width: 100%;
height: 100%;
object-fit: cover; /* 图片将覆盖整个容器 */
}
</style>
</head>
<body>
<img src="https://v2.alapi.cn/api/zaobao?token=你的token密钥&format=image" alt="全屏图片" class="full-screen-image">
</body>
</html>

参考

博客新增每日早报api,网站增加每日早报功能 - AomanHao的博客空间