我从控制台发出以下curl请求以测试我的一个REST API
curl -X GET "http://localhost/api/v1/user/search.json?search_model[first_name]=abc&auth_token=xyzf"
但它失败并出现以下错误
curl: (3) [globbing] error: bad range specification after pos 58
我用"
封装了端点,因为&
用于在控制台中执行宝贵的命令。我还缺少什么?为什么我会收到此错误?
答案 0 :(得分:9)
steve>curl --help | grep glob
-g, --globoff Disable URL sequences and ranges using {} and []
尝试添加-g。