57

コマンドプロンプトで次の行を実行しようとしています:

curl -X POST -d '{ "method" : "account_info", "params" : [ { "account" : "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh"} ] }' http://s1.ripple.com:51234

ただし、次のようになります。

curl: (6) Could not resolve host: method
curl: (7) Failed connect to :80; No error
curl: (6) Could not resolve host: account_info,
curl: (6) Could not resolve host: params
curl: (7) Failed connect to :80; No error
curl: (3) [globbing] illegal character in range specification at pos 2
curl: (3) [globbing] unmatched brace at pos 2
curl: (6) Could not resolve host: account
curl: (7) Failed connect to :80; No error
curl: (3) [globbing] unmatched close brace/bracket at pos 35
curl: (3) [globbing] unmatched close brace/bracket at pos 1
curl: (3) [globbing] unmatched close brace/bracket at pos 1
unable to parse request

私は Windows を使用していますが、エラーは引用符、中括弧、およびグロビングに関係しています。バックスラッシュを前に付けて引用符をエスケープしようとしましたが、うまくいきませんでした。

4

5 に答える 5

84

一重引用符は使用しないでください。文字列内の二重引用符を . でエスケープします\

curl -X POST -d "{ \"method\" : \"account_info\", \"params\" : [ { \"account\" : \"rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh\"} ] }" http://s1.ripple.com:51234

ウィンドウcommand.exeは一重引用符をサポートしていないようです。PowerShell は使用できますが、それらを使用する際にはまだいくつかの問題があるため、最善の解決策はそれらをまったく使用しないことです。

于 2013-07-10T01:12:35.803 に答える
48

curl -gグロビングをオフにするために使用できます。

curl -g -X POST -d '{ "method" : "account_info", "params" : [ { "account" : "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh"} ] }' http://s1.ripple.com:51234

これらすべてのブラケットをエスケープするよりも簡単です。

于 2014-05-08T16:48:31.093 に答える