Je tente de POST à un uri et envoie le paramètre username=me
Invoke-WebRequest -Uri http://example.com/foobar -Method POST
Comment puis-je transmettre les paramètres à l'aide de la méthode POST?
Mettez vos paramètres dans une table de hachage et transmettez-les comme ceci:
$postParams = @{username='me';moredata='qwerty'}
Invoke-WebRequest -Uri http://example.com/foobar -Method POST -Body $postParams
Pour certains services Web difficiles, le type de contenu de la demande doit être défini sur JSON et le corps doit être une chaîne JSON. Par exemple:
Invoke-WebRequest -UseBasicParsing http://example.com/service -ContentType "application/json" -Method POST -Body "{ 'ItemID':3661515, 'Name':'test'}"
ou l'équivalent pour XML, etc.
Cela fonctionne juste:
$body = @{
"UserSessionId"="12345678"
"OptionalEmail"="[email protected]"
} | ConvertTo-Json
$header = @{
"Accept"="application/json"
"connectapitoken"="97fe6ab5b1a640909551e36a071ce9ed"
"Content-Type"="application/json"
}
Invoke-RestMethod -Uri "http://MyServer/WSVistaWebClient/RESTService.svc/member/search" -Method 'Post' -Body $body -Headers $header | ConvertTo-HTML