Adapted from Advanced Microservices: bit.ly/2hlATo2
https://api.github.com/users/tlhunterAccept and application/json into fields
https://api.github.com/users/:username/repos?sort=created&direction=ascusername to tlhunterdirection to desc
Productiongithub_api / https://api.github.comDevelopmentgithub_api / http://localhost{{github_api}}/users/tlhunter
Get User ReposGitHub Sample
$ brew install jq curl$ sudo apt-get install curl$ chmod +x ./jq-*$ curl -X GET -H "Accept: application/json" \
"https://api.github.com/users/tlhunter"
$ curl "https://api.github.com/users/tlhunter"
$ curl "https://api.github.com/users/tlhunter" | jq "."
$ curl "https://api.github.com/users/tlhunter" > account.json
$ cat account.json | jq "."
$ curl "https://api.github.com/users/tlhunter" \
| jq '{login, name, url: .html_url}'
$ curl "https://api.github.com/users/tlhunter/repos" | jq \
'[.[] | {full_name, watchers_count}] |
map(select(.watchers_count >= 1))'