# 出版要求

Cette 部分详细说明了创建过程和通过服务 POST 的请求 Smart Proxy 来自 Crawlbase。

# 表单数据

La commande ci-dessous montre comment envoyer une requête POST qui Transporte 配方数据.

  • 卷曲
  • 红宝石
  • 节点
  • 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 qui inclut 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"