[powershell] Invoke-WebRequest, 매개 변수가있는 POST

URI에 POST를 시도하고 매개 변수를 보냅니다. username=me

Invoke-WebRequest -Uri http://example.com/foobar -Method POST

POST 메소드를 사용하여 매개 변수를 전달하는 방법은 무엇입니까?



답변

매개 변수를 해시 테이블에 넣고 다음과 같이 전달하십시오.

$postParams = @{username='me';moredata='qwerty'}
Invoke-WebRequest -Uri http://example.com/foobar -Method POST -Body $postParams


답변

일부 까다로운 웹 서비스의 경우 요청에 콘텐츠 유형을 JSON으로 설정하고 본문을 JSON 문자열로 설정해야합니다. 예를 들면 다음과 같습니다.

Invoke-WebRequest -UseBasicParsing http://example.com/service -ContentType "application/json" -Method POST -Body "{ 'ItemID':3661515, 'Name':'test'}"

또는 XML 등에 해당하는


답변

이것은 단지 작동합니다 :

$body = @{
 "UserSessionId"="12345678"
 "OptionalEmail"="MyEmail@gmail.com"
} | 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


답변

POST API 호출에 JSON본문 {lastName:"doe"}으로 사용할 때 ps 변수가없는 단일 명령 :

Invoke-WebRequest -Headers @{"Authorization" = "Bearer N-1234ulmMGhsDsCAEAzmo1tChSsq323sIkk4Zq9"} `
                  -Method POST `
                  -Body (@{"lastName"="doe";}|ConvertTo-Json) `
                  -Uri https://api.dummy.com/getUsers `
                  -ContentType application/json


답변