Open wgjhstt247 opened 7 months ago
The module frequently uses Invoke-WebRequest, which makes the functions in the module very slow. Use Invoke-WebRequest only for authentication, since access to the response headers are needed. Use Invoke-RestMethod everywhere else.
Invoke-WebRequest
Invoke-RestMethod
The module frequently uses
Invoke-WebRequest
, which makes the functions in the module very slow. UseInvoke-WebRequest
only for authentication, since access to the response headers are needed. UseInvoke-RestMethod
everywhere else.