Skip to content

Instantly share code, notes, and snippets.

@lisysolution
Created August 19, 2015 14:20
Show Gist options
  • Save lisysolution/f37fefca9006655b10fe to your computer and use it in GitHub Desktop.
Save lisysolution/f37fefca9006655b10fe to your computer and use it in GitHub Desktop.
파워쉘 - HTTP POST/GET
# POST 방식 전송
$postParams = @{
name1=val1;
name2=val2;
}
Invoke-WebRequest -Uri http://api.service.com/call.aspx -Method POST -Body $postParams
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment