/install autoglm-open-link
Autoglm Open Link
Overview
根据用户提供的网页 URL,调用 AutoGLM Open Link API 获取页面详细正文内容,适合后续做摘要、信息抽取或深度分析。
API
| 项目 | 内容 |
|---|---|
| 地址 | https://autoglm-api.zhipuai.cn/agentdr/v1/assistant/skills/open-link |
| 方式 | POST |
| 请求体 | {"url": "\x3C页面链接>"} |
| 返回 | data.text → 页面正文内容 |
脚本启动时会先向本地服务发起 HTTP GET 请求获取 token:
| 项目 | 内容 |
|---|---|
| 地址 | http://127.0.0.1:53699/get_token |
| 方式 | GET |
| 返回 | Bearer xxx(直接作为 Authorization 头使用) |
若返回值不含
Bearer前缀,脚本会自动补全。
签名 Headers(每次动态生成):
X-Auth-Appid:100003X-Auth-TimeStamp: 当前秒级 Unix 时间戳X-Auth-Sign: MD5(100003 + "&" + timestamp + "&" + 38d2391985e2369a5fb8227d8e6cd5e5)
执行脚本
使用同目录下的 open-link.py:
python open-link.py "https://example.com"
返回结果处理
响应结构
{
"code": 0,
"msg": "SUCCESS",
"data": {
"text": "页面正文内容"
}
}
输出要求
- 提取
data.text作为页面正文。 - 如果内容较长,优先按自然段展示或按用户目标做摘要。
- 如果接口返回错误,直接展示错误信息,不要伪造内容。
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install autoglm-open-link - After installation, invoke the skill by name or use
/autoglm-open-link - Provide required inputs per the skill's parameter spec and get structured output
What is Autoglm Open Link?
使用 AutoGLM Open Link 接口打开指定网页并提取页面正文内容。当用户需要读取某个网页详情、提取文章全文、抓取页面正文做摘要或分析时使用此 skill。 Token 通过本地服务 http://127.0.0.1:53699/get_token 自动获取,无需手动配置环境变量。 It is an AI Agent Skill for Claude Code / OpenClaw, with 31 downloads so far.
How do I install Autoglm Open Link?
Run "/install autoglm-open-link" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Autoglm Open Link free?
Yes, Autoglm Open Link is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Autoglm Open Link support?
Autoglm Open Link is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Autoglm Open Link?
It is built and maintained by flyfujian (@flyfujian); the current version is v1.0.0.