gpt4 book ai didi

http - 如何在 HTTPie 中使用 PUT 上传文件

转载 作者:可可西里 更新时间:2023-11-01 17:04:58 24 4
gpt4 key购买 nike

我正在寻找语法来编写一个使用 HTTPie 上传文件的 PUT 操作。请你能指出我正确的语法吗?我在官方文档中找不到这样做的方法

最佳答案

要使用 httpie 实现此目的,您需要做两件事:

  1. Set the HTTP methodPUT,这很简单:$ http PUT […]
  2. 传递文件内容,有多种方式:

Redirected input :

$ http PUT httpbin.org/put Content-Type:image/png < /images/photo.png

Request data from a filename (自动设置 Content-Type header ):

$ http PUT httpbin.org/put @/images/photo.png

Form file upload :

$ http --form PUT httpbin.org/put photo=@/images/photo.png

关于http - 如何在 HTTPie 中使用 PUT 上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50830425/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com