Created
May 11, 2015 15:49
-
-
Save chelnak/e69759ca26e9029453c7 to your computer and use it in GitHub Desktop.
Invoke-RestMethod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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