Answers:
curl
是双引号("
),而不是单引号('
)已知Windows中的Curl不喜欢按照该线程(例如)使用单引号:
D:\nr\platform_installer_win32>curl -X GET 'http://api.newrelic.com/v2/applications.json' \ -H "X-Api-Key:${APIKEY}" -i curl: (1) Protocol "'http" not supported or disabled in libcurl
(...)
我相信您看到的第一个警告是由于将网址用单引号而不是双引号引起来。
(来自NewRelic论坛,重点是我的)
这也在StackOverflow的质量检查中弹出。
curl --version
什么?