[BUG]: Authenticated user's private repos not listed
Opened this issue · 2 comments
What happened?
I'm trying to access the currently authenticated user's private repos and at this point can't seem to get them listed with any endpoint or options.
I definitely have access to them as I can just pass in the the private repo to client.repo
and it works fine.
I've used omniauth to connect to my GitHub account and then do this to auth the client:
@client = Octokit::Client.new(access_token: current_user.token)
No issues there.
@client.repositories(nil)
— This returns all private repos (include org repos) EXCEPT for my personal ones.
@client.repositories('Shpigford')
— This returns all of my public repos, but no private ones.
Not sure what else to try.
Versions
octokit gem (9.1.0)
Relevant log output
No response
Code of Conduct
- I agree to follow this project's Code of Conduct
👋 Hi! Thank you for this contribution! Just to let you know, our GitHub SDK team does a round of issue and PR reviews twice a week, every Monday and Friday! We have a process in place for prioritizing and responding to your input. Because you are a part of this community please feel free to comment, add to, or pick up any issues/PRs that are labeled with Status: Up for grabs
. You & others like you are the reason all of this works! So thank you & happy coding! 🚀
So this is interesting: the SDK code is a pretty straightforward passthrough:
def repositories(user = nil, options = {})
paginate "#{User.path user}/repos", options
end
to the API user repositories endpoint, which states that it "Lists public repositories for the specified user."
To get private repositories for a user, you must call the API endpoint to list repositories for the authenticated user.
It seems like there's an opportunity to add some functionality to the SDK here.