当前位置: 代码迷 >> 综合 >> PowerShell 使用Invoke-WebRequest 提交表单
  详细解决方案

PowerShell 使用Invoke-WebRequest 提交表单

热度:5   发布时间:2024-02-07 12:06:38.0

Post:

$body = @{
client_id='id'
client_secret='secret'
grant_type='client_credentials'
}
$contentType = 'application/x-www-form-urlencoded' 
$sourceApi = yoururl


Invoke-WebRequest -Method POST -Uri $sourceApi -body $body -ContentType $contentType

  相关解决方案