Skip to content

Instantly share code, notes, and snippets.

@halr9000
Created August 9, 2012 15:39
Show Gist options
  • Save halr9000/3305256 to your computer and use it in GitHub Desktop.
Save halr9000/3305256 to your computer and use it in GitHub Desktop.
Read public gists using PowerShell (quick example)
# this gets even easier in v3 with the Invoke-RestMethod cmdlet
$uri = 'https://api.github.com/users/halr9000/gists'
Invoke-RestMethod -Uri $uri
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment