4

安らかな API 呼び出しを行っていますが、エラーが発生します。

Warning: Invalid character is found in given range. A specified range MUST 
Warning: have only digits in 'start'-'stop'. The server's response to this 
Warning: request is uncertain.
HTTP/1.1 200 OK
Date: Thu, 22 Aug 2013 17:43:19 GMT
Server: Apache
Content-Length: 208
Allow: GET, HEAD, POST
Vary: Authorization
Content-Type: application/json

無効な文字に関するこの警告エラーを見た人はいますか? どうすれば修正できますか?

私は電話していました:

curl https://my/url/for/api --include -H "Content-Type:application/json" -request POST '{ \"type\": \"code\", \"objects\" : [ \"123456\" ] } ' -u user:pass

より詳しい情報:

リターンの最後に余分な応答

curl: (6) Could not resolve host: POST; nodename nor servname provided, or not known

curl: (3) [globbing] nested braces not supported at pos 33
4

3 に答える 3

3

同様の状況がありました-私のcurlリクエストは本質的に機能し、必要な情報を返しましたが、次のコードを使用して警告が表示されました:

curl -request http://...

-requestそれは、私が間違って入力したパラメーターであることが判明しました。次のようなものである必要があります。

curl --request GET http://...

または単にそこにまったくありません(GETがデフォルトであるため):

curl http://...
于 2016-09-16T13:39:45.283 に答える