获取项目README文件
GET
/api/{owner}/{repo}/readme.json最后修改时间: 1 年前
请求参数
Path 参数
owner
string
必需
repo
string
必需
Query 参数
filepath
string
可选
子目录名称,默认为空
ref
string
可选
分支名称、标签名称或是提交记录id,默认为默认分支
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
type
string
类型
encoding
string
文件加密方式
size
integer
文件大小
name
string
文件名称
path
string
文件路径
content
string
文件内容
sha
string
文件标识
replace_content
string
替换后的文件内容
示例
{
"type": "file",
"encoding": "base64",
"size": 13,
"name": "README.md",
"path": "README.md",
"content": "# ceshi_doc\n\n",
"sha": "91d1da709ed2610e8bcd7b2f6c988f4b8888e515",
"replace_content": "# ceshi_doc\n\n"
}
最后修改时间: 1 年前