You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When making a call to get the authenticated user's gists, it only returns the public gists.
import GitHubAPI from 'github-api';
const getGists = (async () => {
var gh = new GitHubAPI({
token: 'token'
});
var user = gh.getUser();
var gists = user.listGists().then( data => data );
return gists;
})
Is this a GitHub API issue, a GitHub.JS issue, or am I missing something?
The text was updated successfully, but these errors were encountered:
When making a call to get the authenticated user's gists, it only returns the public gists.
Is this a GitHub API issue, a GitHub.JS issue, or am I missing something?
The text was updated successfully, but these errors were encountered: