我正在尝试使用 Node.js 从私人仓库返回 Github 问题列表。我能够返回一个 repos 列表,但我正在努力返回问题。
看来您可以list_issues
根据此处的文档列出该功能的问题https://octokit.github.io/octokit.rb/Octokit/Client/Issues.html
。但是,尝试访问该功能时出现错误。
const octokit = require('@octokit/rest')()
octokit.authenticate({
type: 'basic',
username: 'username',
password: 'password'
})
octokit.repos.getForOrg({
org: 'name_of_organization',
type: 'private'
}).then(({data, headers, status}) => {
console.log(data) // returns list of repos as JSON
})
octokit.list_issues("name_of_org/name_of_repo")
.then(({data, headers, status}) => {
console.log(data) // error: octokit.list_issues in not a function
})
如何从 Github 返回私有问题列表作为 JSON?