gpt4 book ai didi

json - 打开 IE 并发送 JSON POST 数据

转载 作者:行者123 更新时间:2023-12-02 23:31:41 25 4
gpt4 key购买 nike

我正在尝试使用 PowerShell 打开网页,同时将 JSON 作为我的 POST 数据发送。

这是我所拥有的

$ie = New-Object -comObject InternetExplorer.Application
$ie.visible = $true
$postBytes = [System.Text.Encoding]::Default.GetBytes('"xCoord":"11.11","yCoord":"22.22","scale":"8,000,016.00","coordSysId":"123"');
$ie.navigate("http://localhost/ProcessSearch", "_blank", $postBytes, "Content-Type: application/json; charset=utf-8")

该网页确实打开了,但是根据 Fiddler 没有发布 JSON。

如何发送 POST 数据?

最佳答案

我会使用 cURL 实用程序 http://curl.haxx.se/dlwiz/?type=bin&os=Win64并从 PowerShell 运行它。无需为此使用 IE 或任何浏览器。

关于json - 打开 IE 并发送 JSON POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6525366/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com