Httpie: http 在 bash 循环中不起作用

创建于 2013-11-23  ·  3评论  ·  资料来源: httpie/httpie

Looks like a leackage.

I have this file, links.txt:
www.google.com?q=1  
www.google.com?q=2  
www.google.com?q=3  
www.google.com?q=4  


Running this:
$ cat links.txt | while read line; do http --print BHhb GET $line; done

Expected result:
4 http calls, one for each line on the file.

Actual:
1 request executed to the first url in the file and request body having the other 3 lines.

GET /?q=1 HTTP/1.1
Accept: application/json
Accept-Encoding: gzip, deflate, compress
Content-Length: 63
Content-Type: application/json; charset=utf-8
Host: www.google.com
User-Agent: HTTPie/0.6.0

www.google.com?q=2
www.google.com?q=3
www.google.com?q=4

HTTP/1.0 400 Bad Request
Content-Length: 925
Content-Type: text/html; charset=UTF-8
Date: Sat, 23 Nov 2013 19:48:51 GMT
Server: GFE/2.0

<!DOCTYPE html>
<html lang=en>
  <meta charset=utf-8>
  <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
  <title>Error 400 (Bad Request)!!1</title>
  <style>
    *{margin:0;padding:0}html,code{font:15px/22px arial,sans-serif}html{background:#fff;color:#222;padding:15px}body{margin:7% auto 0;max-width:390px;min-height:180px;padding:30px 0 15px}* > body{background:url(//www.google.com/images/errors/robot.png) 100% 5px no-repeat;padding-right:205px}p{margin:11px 0 22px;overflow:hidden}ins{color:#777;text-decoration:none}a img{border:0}<strong i="5">@media</strong> screen and (max-width:772px){body{background:none;margin-top:0;max-width:none;padding-right:0}}
  </style>
  <a href=//www.google.com/><img src=//www.google.com/images/errors/logo_sm.gif alt=Google></a>
  <p><b>400.</b> <ins>That’s an error.</ins>
  <p>Your client has issued a malformed or illegal request.  <ins>That’s all we know.</ins>



Running same script with curl instead works as expected.


cheers!

最有用的评论

这是因为 HTTPie 默认读取STDIN ,如果它被重定向(它在循环内)。

有多种方法可以摆脱它:

  • 最好的方法是使用--ignore-stdin (它的存在就是为了解决这个问题):
cat links.txt | while read url; do 
        http --ignore-stdin --verbose $url
done
  • 或者,将STDIN更改回终端:
cat links.txt | while read url; do
        http --verbose $url < /dev/tty
done
  • 或者,首先不要重定向STDIN (但要注意空格):
for url in `cat links.txt`; do 
        http --verbose $url
done

另见#150。

所有3条评论

这是因为 HTTPie 默认读取STDIN ,如果它被重定向(它在循环内)。

有多种方法可以摆脱它:

  • 最好的方法是使用--ignore-stdin (它的存在就是为了解决这个问题):
cat links.txt | while read url; do 
        http --ignore-stdin --verbose $url
done
  • 或者,将STDIN更改回终端:
cat links.txt | while read url; do
        http --verbose $url < /dev/tty
done
  • 或者,首先不要重定向STDIN (但要注意空格):
for url in `cat links.txt`; do 
        http --verbose $url
done

另见#150。

--ignore-stdin 是我正在寻找的。 我必须更新已安装
版本,但现在似乎按预期工作。
我喜欢 httpie,但是这个小东西让我有时间去想...

感谢您的快速响应。
干杯!

2013 年 11 月 23 日星期六下午 4:17,Jakub Roztočil [email protected]写道:

关闭 #181 https://github.com/jkbr/httpie/issues/181。


直接回复此邮件或在 Gi tHub上查看 https://github.com/jkbr/httpie/issues/181
.

菲利普戈麦斯世界语

Gtalk: [email protected]
Skype: filipesperandio
谷歌语音:+1 650 701 7057

嗨,我有一个类似的问题,通过--ignore-stdin解决了,但我的上下文有点不同:

./run.sh http https://base-url/endpoint\?attributes=all\&nested_attribbutes\=all Authorization:Bearer\ bf54b184d7729ac9bfffb576782e2a1d3cd7bd76 Content-Type:application/json Accept:\ \*/\* -h

我得到了HTTP/1.1 422 Unprocessable Entity

run.sh脚本如下所示: seq 5 | xargs -I {} -n1 "$@"

添加--ignore-stdin解决了这个问题,但我没有阅读来自STDIN的请求。 你能解释一下它在这种情况下是如何工作的吗?

此页面是否有帮助?
0 / 5 - 0 等级

相关问题

cunde picture cunde  ·  7评论

rashthedude picture rashthedude  ·  3评论

loretoparisi picture loretoparisi  ·  6评论

pyvotal-cguers picture pyvotal-cguers  ·  5评论

eliangcs picture eliangcs  ·  5评论