我正在尝试使用Node.js从私人仓库中返回Github问题列表。我能够返回该回购清单,但正在努力退回这些问题。
看来您可以根据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格式返回私人问题列表?
答案 0 :(得分:0)
基于https://octokit.github.io/rest.js/#api-Search-issues
上的文档使用相同的身份验证代码块时,示例请求可能类似于:
octokit.issues.getAll({
filter: 'all',
state: 'open',
labels: '',
sort: 'updated',
direction: 'desc',
since: '2018-07-01T00:00:00Z',
per_page: '100',
page: '1'})
.then(result => {
console.log(result)
})
.catch(err => {
console.log(err)
})