项目级别 WIKI API

  • 在 14.9 版本中添加了 encoding 字段。
  • 在 14.9 版本中添加了 render_html 参数。
  • 在 14.9 版本中添加了 version 参数。

项目 Wiki API 仅在 APIv4 中可用。 群组 Wiki API 也可用。

列出 Wiki 页面

获取给定项目的所有 Wiki 页面。

GET /projects/:id/wikis
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
with_content boolean 包括页面的内容
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/wikis?with_content=1"

响应示例:

[
  {
    "content" : "Here is an instruction how to deploy this project.",
    "format" : "markdown",
    "slug" : "deploy",
    "title" : "deploy",
    "encoding": "UTF-8"
  },
  {
    "content" : "Our development process is described here.",
    "format" : "markdown",
    "slug" : "development",
    "title" : "development",
    "encoding": "UTF-8"
  },{
    "content" : "*  [Deploy](deploy)\n*  [Development](development)",
    "format" : "markdown",
    "slug" : "home",
    "title" : "home",
    "encoding": "UTF-8"
  }
]

获取 Wiki 页面

获取一个给定项目的 Wiki 页面。

GET /projects/:id/wikis/:slug
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
slug string Wiki 页面的 URL 编码的 slug(唯一字符串),例如 dir%2Fpage_name
render_html boolean 返回 Wiki 页面的渲染 HTML
version string Wiki 页面版本 SHA
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/wikis/home"

响应示例:

{
  "content" : "home page",
  "format" : "markdown",
  "slug" : "home",
  "title" : "home",
  "encoding": "UTF-8"
}

新建 Wiki 页面

使用给定的标题、slug 和内容为给定的存储库创建一个新的 Wiki 页面。

POST /projects/:id/wikis
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
content string Wiki 页面的内容
title string Wiki 页面的标题
format string Wiki 页面的格式。可用格式有:markdown(默认)、rdocasciidocorg
curl --data "format=rdoc&title=Hello&content=Hello world" \
     --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/wikis"

响应示例:

{
  "content" : "Hello world",
  "format" : "markdown",
  "slug" : "Hello",
  "title" : "Hello",
  "encoding": "UTF-8"
}

编辑现存 Wiki 页面

更新现有的 Wiki 页面。 更新 Wiki 页面至少需要一个参数。

PUT /projects/:id/wikis/:slug
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
content string 是 (如果没有提供 title ) Wiki 页面的内容
title string 是 (如果没有提供 content ) Wiki 页面的标题
format string Wiki 页面的格式。可用格式有:markdown(默认)、rdocasciidocorg
slug string Wiki 页面的 URL 编码的 slug(唯一字符串),例如 dir%2Fpage_name
curl --request PUT --data "format=rdoc&content=documentation&title=Docs" \
     --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/wikis/foo"

响应示例:

{
  "content" : "documentation",
  "format" : "markdown",
  "slug" : "Docs",
  "title" : "Docs",
  "encoding": "UTF-8"
}

删除 Wiki 页面

删除带有给定 slug 的 Wiki 页面。

DELETE /projects/:id/wikis/:slug
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
slug string Wiki 页面的 URL 编码的 slug(唯一字符串),例如 dir%2Fpage_name
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/wikis/foo"

成功后,HTTP 状态代码为204,并且不需要 JSON 响应。

将附件上传到 Wiki 仓库

将文件上传到 Wiki 仓库中的附件文件夹。附件文件夹名是 upload

POST /projects/:id/wikis/attachments
参数 类型 是否必需 描述
id integer/string 项目的 ID 或 URL 编码的路径
file string 要上传的附件
branch string 分支的名称。 默认为 Wiki 仓库默认分支

要从文件系统上传文件,请使用 --form 参数。 这样 cURL 将使用标头 Content-Type: multipart/form-data 发布数据。通过 @file= 参数必须指向您的文件系统上的一个文件并且在前面。例如:

curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
     --form "file=@dk.png" "https://gitlab.example.com/api/v4/projects/1/wikis/attachments"

响应示例:

{
  "file_name" : "dk.png",
  "file_path" : "uploads/6a061c4cf9f1c28cb22c384b4b8d4e3c/dk.png",
  "branch" : "master",
  "link" : {
    "url" : "uploads/6a061c4cf9f1c28cb22c384b4b8d4e3c/dk.png",
    "markdown" : "![dk](uploads/6a061c4cf9f1c28cb22c384b4b8d4e3c/dk.png)"
  }
}