{"meta":{"title":"表情符号的 REST API 终结点","intro":"使用 REST API 列出和查看在 GitHub 上使用的所有可用表情符号。","product":"REST API","breadcrumbs":[{"href":"/zh/enterprise-server@3.17/rest","title":"REST API"},{"href":"/zh/enterprise-server@3.17/rest/emojis","title":"表情符号"},{"href":"/zh/enterprise-server@3.17/rest/emojis/emojis","title":"表情符号"}],"documentType":"article"},"body":"# 表情符号的 REST API 终结点\n\n使用 REST API 列出和查看在 GitHub 上使用的所有可用表情符号。\n\n> [!NOTE]\n> Most endpoints use `Authorization: Bearer <YOUR-TOKEN>` and `Accept: application/vnd.github+json` headers, plus `X-GitHub-Api-Version: 2022-11-28`. Curl examples below omit these standard headers for brevity.\n\n## Get emojis\n\n```\nGET /emojis\n```\n\nLists all the emojis available to use on GitHub Enterprise Server.\n\n### HTTP response status codes\n\n- **200** - OK\n\n- **304** - Not modified\n\n### Code examples\n\n#### Example\n\n**Request:**\n\n```curl\ncurl -L \\\n  -X GET \\\n  http(s)://HOSTNAME/api/v3/emojis\n```\n\n**Response schema (Status: 200):**\n\nobject, additional properties: string"}