Skip to content

Instantly share code, notes, and snippets.

@ryo-endo
ryo-endo / GitHubAPIv4-pagination-sample.js
Last active May 25, 2020 13:03
Node.jsでGitHubAPIv4を叩くサンプル(ページネーションあり) / call GitHub API v4 with pagination.
//
// Node.jsでGitHubAPIv4を叩くサンプル(ページネーションあり)
//
const https = require('https');
const options = {
method: 'POST',
headers: {
'Authorization': 'bearer ' + process.env.GITHUB_TOKEN,