我想用GET请求传递表单数据。
我在这个卷曲上取得了成功: curl http://sample.com -d 'action=login_request&user_name=balvan'
但我需要从-d
传递同样的东西。 使用此函数调用:
(http-client/request
{:url base-url
:method :get
:deadlock-guard? false
:insecure? true})
如何在请求正文中添加这些"-d"参数?
我在 ns 声明中具有[org.httpkit.client :as http-client]
,在项目的依赖项中[cheshire "5.8.1"]
。
发出man curl
告诉我们 -d 标志将发送带有数据的 post 请求。
-d, --data <data>
(HTTP) Sends the specified data in a POST request to the HTTP
cause curl to pass the data to the server using the content-type
-d, --data is the same as --data-ascii. --data-raw is almost the
ter...
您要做的是:
(http-client/request
{:url base-url
:method :post
:form-params {"action" "login_request"
"user_name" "balvan"}
:deadlock-guard? false
:insecure? true})