How to make an HTTP Post / GET request in Powershell?

I am using the REST API with a cloud service. Using Powershell, I need to make an HTTP message as well as receive a request.

How can I do this in a simple, concise manner?

thank

+5
source share
1 answer

Give this HttpRest module that Jaykul wrote. Use Invoke-Httpand Invoke-Http -verb post. Be sure to read the INSTALL comments because it has some prerequisites necessary for installation in the first place.

+2
source

All Articles