我正在尝试通过脚本从 Gitlab 克隆我的一组项目。我找到了一个有助于连接到 Gitlab API 的 python 库。但它不起作用。
gl = gitlab.Gitlab('https://gitlab.com/*myname*', private_token = '*mytoken*')
gl.auth()
grouplist = gl.groups.list()
错误是:
JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
该错误似乎出现在获取 gl 对象时(呈现代码的第一行)
该库称为 python-gitlab(可用于
import gitlab
)
https://python-gitlab.readthedocs.io/en/stable/api-usage.html