Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save magohl/b73c3ed898db4e05367f73b4d7a9af5a to your computer and use it in GitHub Desktop.
Save magohl/b73c3ed898db4e05367f73b4d7a9af5a to your computer and use it in GitHub Desktop.
$request = @{
Uri = 'http://localhost/SuperImportant/service.svc'
Method = 'POST'
Body = '{
"name": "testing",
"prio": "24"}'
ContentType = 'application/json'
}
while (1)
{
$response = Invoke-RestMethod @request
Write-Output $response
Start-Sleep -s 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment