# 发布请求

本节晴明通过了 Crawlbase 的智能代理服务创建和发送 POST 请请求的过程。

# 表格数据

下面的命令显示了如何发送一个POST 请求携带 表格数据.

  • 卷曲
  • 红宝石
  • 节点
  • 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数据

发送包含以下内容的POST请求 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"