anp.fetchDoc
Fetch and parse ANP documents to extract content, type information, and followable links. This is the authorized method for accessing URLs within the ANP ecosystem.
Instructions
抓取并解析 ANP 文档,提取可跟进的链接。这是访问 ANP 生态系统中 URL 的唯一允许方法。返回文档内容、类型信息和发现的链接。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | 要抓取的 ANP 文档的 URL |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "要抓取的 ANP 文档的 URL",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}