获取一个项目标签
GET
/api/v1/{owner}/{repo}/tags/{name}.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
必需
repo
string
必需
name
string
必需
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
name
string
标签名称
id
string
标签ID
zipball_url
string
标签zip下载地址
tarball_url
string
标签tar下载地址
tagger
object
创建标签者
id
string
必需
login
string
必需
name
string
必需
type
string
必需
image_url
string
必需
time_ago
string
创建标签时间(距离现在)
created_at_unix
integer
创建标签时间戳
message
string
标签内容
commit
object
必需
sha
string
提交标识
message
string
提交内容
time_ago
string
提交时间(距离现在)
created_at_unix
integer
提交时间
committer
object
提交者
author
object
作者
示例
{
"name": "v1.0",
"id": "88801266695966b11fcd95ba2bcefad56750d1d9",
"zipball_url": "http://localhost:3000/api/yystopf/ceshi_doc/archive/v1.0.zip",
"tarball_url": "http://localhost:3000/api/yystopf/ceshi_doc/archive/v1.0.tar.gz",
"tagger": {
"id": "110",
"login": "yystopf",
"name": "咸蛋黄土豆丝xxx",
"type": "User",
"image_url": "system/lets/letter_avatars/2/X/230_139_26/120.png"
},
"time_ago": "1年前",
"created_at_unix": 1658214400,
"message": "测试提交",
"commit": {
"sha": "88801266695966b11fcd95ba2bcefad56750d1d9",
"message": "测试提交\n",
"time_ago": "1年前",
"created_at_unix": 1658214400,
"committer": {
"id": "110",
"login": "yystopf",
"name": "咸蛋黄土豆丝xxx",
"type": "User",
"image_url": "system/lets/letter_avatars/2/X/230_139_26/120.png"
},
"author": {
"id": "110",
"login": "yystopf",
"name": "咸蛋黄土豆丝xxx",
"type": "User",
"image_url": "system/lets/letter_avatars/2/X/230_139_26/120.png"
}
}
}
最后修改时间: 1 年前