获取特定页面的元数据
GET
api/v1/projects/{projectId}/pages/{pageId}/metadata根据页面的唯一标识符检索元数据。此端点允许您获取与特定页面关联的元数据。
请求参数
Path 参数
projectId
string
必需
项目的唯一标识符。
pageId
string
必需
页面的唯一标识符。
示例代码
返回响应
成功(200)
请求有误(400)
没有权限(401)
记录不存在(404)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
data
object
必需
url
string
必需
title
string
必需
description
string
必需
image
string
必需
示例
成功示例
{
"status": "success",
"data": {
"url": "https://www.example.com",
"title": "Example Domain",
"description": "This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.",
"image": "https://www.example.com/image.png"
}
}
最后修改时间: 10 个月前