# 查询已发布

在 POST-Anfragen 上发布的版本和版本 Smart Proxy-Crawlbase 的服务。

# 表单数据

Der folgende Befehl zeigt,wie eine POST-Anfrage gesendet wird,die Folgendes enthält: 表单数据.

  • 卷曲
  • 红宝石
  • 节点
  • PHP
  • 蟒蛇
  • go
curl -H 'Content-Type: application/x-www-form-urlencoded' \
-F 'param=value' \
-X POST \
-x "http://[email protected]:8012" \
-k "http://httpbin.org/anything"

# JSON数据

所以请发送 Sie eine POST-Anfrage, die Folgendes enthält: JSON数据,请参阅后续评论。

  • 卷曲
  • 红宝石
  • 节点
  • PHP
  • 蟒蛇
  • go
curl -H "accept: application/json" \
--data '{"key1":"value1","key2":"value2"}' \
-X POST \
-x "http://[email protected]:8012" \
-k "http://httpbin.org/anything"