我将如何使用Invoke-WebRequest
发布所有这些参数
POST /token HTTP/1.1
Host: login.huddle.net
Content-Type: application/x-www-form-urlencoded
grant_type=authorization_code&client_id=s6BhdRkqt&redirect_uri=MyAppServer.com/receiveAuthCode&code=i1WsRn1uB
最佳答案
这是将主体转换为PowerShell可以解释的主体的方法。
$body = @{grant_type='authorization_code'
client_id='s6BhdRkqt'
redirect_uri='MyAppServer.com/receiveAuthCode'
code='i1WsRn1uB'}
$contentType = 'application/x-www-form-urlencoded'
Invoke-WebRequest -Method POST -Uri <yourUrl> -body $body -ContentType $contentType
关于powershell - 如何使用Invoke-WebRequest发布请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41746097/