我正在尝试将zip文件卷曲到服务器上,使用curl我没有遇到麻烦:
curl -v -u admin:my_password -X PUT -H "Content-type: application/zip" --data-binary @D:/Air_Quality.zip https://www.my-geoserver.com/geoserver/rest/workspaces/practice/datastores/new_datastore/file.shp
这很好用,但是我使用邮递员选择:
我点击发送,我得到:
不支持的格式:zip
当我查看请求的代码时,我注意到--data-binary
并且代码中缺少文件,为什么邮递员没有将它们放入?这会是问题吗?
邮递员卷曲代码是:
curl -X PUT \
https://www.my-geoserver.com/geoserver/rest/workspaces/practice/datastores/new_datastore/file.zip \
-H 'authorization: Basic YWRtaW4AZ3VpbnwpZ2h0NzM=' \
-H 'cache-control: no-cache' \
-H 'content-type: application/zip' \
-H 'postman-token: 46a7474d-2393-c7ac-8c9a-939421ae0d10'