I have a private repo in my org and I need to provide access. I want to be able to access a file through a GET request (the browser). I do NOT have a terminal or curl or any other tools.
I created a dummy account that I linked to my org. I went to https://github.com/settings/tokens and added one.
Then I tried the following URLS
which does not work. It only seems to work with the generated token that you get when you click on "raw" on the github gui. Unfortunately this token expires quickly so it does not work for my application.
How do I access private resource on github with an access token through a URL ?
解决方案
The API docs list that you can use the parameter access_token to pass in an oauth token (not private_token or token).