如何使用 Wreq 设置 HTTP 请求正文



>使用 customMethod https://hackage.haskell.org/package/wreq-0.5.2.1/docs/Network-Wreq.html#v:customMethod 时如何设置请求正文?

postput等接受主体的参数,但是customMethod没有这样的参数。

使用 customPayloadMethod 在具有可发布正文的请求上指定自定义方法。

customPayloadMethod :: Postable a => String -> String -> a -> IO (Response ByteString)

根据您的需要,还有其他一些变体:

customPayloadMethodWith :: Postable a => String -> Options -> String -> a -> IO (Response ByteString) Source#
customHistoriedPayloadMethod :: Postable a => String -> String -> a -> IO (HistoriedResponse ByteString) Source#
customHistoriedPayloadMethodWith :: Postable a => String -> Options -> String -> a -> IO (HistoriedResponse ByteString)

相关内容

  • 没有找到相关文章

最新更新