Invoke-WebRequest, POST with parameters
Invoke-WebRequest, POST with parameters
Invoke-WebRequest, POST with parameters
Re: Invoke-WebRequest, POST with parameters
Put your parameters in a hash table and pass them like this:
```
$postParams = @{username='me';moredata='qwerty'}
Invoke-WebRequest -Uri http://example.com/foobar -Method POST -Body $postParams
```
```
$postParams = @{username='me';moredata='qwerty'}
Invoke-WebRequest -Uri http://example.com/foobar -Method POST -Body $postParams
```