Github站点管理curl不适用于活跃用户

qnyhuwrf  于 2023-03-18  发布在  Git
关注(0)|答案(1)|浏览(114)
curl -L -u DEV:$DEVTOKEN https://github.company-name.net/api/v3/stafftools/reports/active_users.csv

{
  "message": "Not Found",
  "documentation_url": "https://docs.github.com/enterprise/3.6/rest"
}

我正尝试按照https://docs.github.com/en/github-ae@latest/admin/configuration/configuring-your-enterprise/site-admin-dashboard中的说明进行 curl
为什么我收到找不到消息错误?

zed5wv10

zed5wv101#

“报告”说明不包括api/v3
站点管理员控制板提供了一个“报告”部分作为替代选项,使您可以轻松下载CSV报告,其中包含您可能需要的用户、组织和存储库的大部分信息。

curl -L -u USERNAME:TOKEN http(s)://HOSTNAME/stafftools/reports/all_users.csv

相关问题