:ノード-githubの:これは私がメソッドを使用している方法です「getStatsContributorsは」返さない結果を適切
github.repos.getStatsContributors({
repo: 'Cloudformation-Webserver',
owner : 'DorrinPk'
}, function (err, res) {
console.log(err, res);
});
私はヌル結果を得るレポのためにそれを初めて実行します。私はそれを実行して二回目は、私が取得:
null { data: [ { total: 4, weeks: [Object], author: [Object] } ], meta: { 'x-ratelimit-limit': '5000',
'x-ratelimit-remaining': '4968',
'x-ratelimit-reset': '1499712495',
'x-oauth-scopes': 'admin:org, admin:repo_hook, notifications, repo, user',
'x-github-request-id': 'A05B:0684:271B6:59CB1:5963C4D0',
'x-github-media-type': 'github.v3; format=json',
etag: '"f1ea81d88281adf31e1178d0804f230c"',
status: '200 OK' } }
私はtotal:4
はレポの私のコミットの数である知っているが、私は唯一のauthor
とweeks
のために戻って[Object]
を取得します。
私は何か間違っていますか?私はthisと同様の結果を期待していました。
ああありがとうございます。私は、 'author'オブジェクトが何を含んでいるのかについてapiドキュメントを調べておくべきでした。ありがとう! –