Skip to content

Instantly share code, notes, and snippets.

@chelnak
Created May 11, 2015 15:49
Show Gist options
  • Select an option

  • Save chelnak/e69759ca26e9029453c7 to your computer and use it in GitHub Desktop.

Select an option

Save chelnak/e69759ca26e9029453c7 to your computer and use it in GitHub Desktop.
Invoke-RestMethod
$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("Accept", "application/json")
$headers.Add("Content-Type", "application/json")
$url = "whatever.com"
$r = Invoke-RestMethod $url -Headers $headers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment