上传本地文件到GraphDB
Uploading local file to GraphDB
尝试使用以下 curl 命令将本地 turtle 文件上传到 GraphDB(免费版),运行 在 http://localhost:7200/
。
curl -X POST 'http://localhost:7200/repositories/testrepository1/statements' -H "Content-Type:text/turtle" -T "/home/Desktop/onto.ttl"
尽管此 curl 命令在执行时 return 没有任何错误,但本地文件 onto.ttl
没有上传到 testrepository1
我正在使用 9.7.0 版免费的 graphDB。
如果有人帮助我,我将不胜感激。提前致谢!
您使用了错误的 MIME 类型 - 应该是 application/x-turtle 而不是 text/turtle。该请求将如下所示:
curl -X POST -H "Content-Type:application/x-turtle" -T "/home/Desktop/onto.ttl" http://localhost:7200/repositories/testrepository1/statements
尝试使用以下 curl 命令将本地 turtle 文件上传到 GraphDB(免费版),运行 在 http://localhost:7200/
。
curl -X POST 'http://localhost:7200/repositories/testrepository1/statements' -H "Content-Type:text/turtle" -T "/home/Desktop/onto.ttl"
尽管此 curl 命令在执行时 return 没有任何错误,但本地文件 onto.ttl
没有上传到 testrepository1
我正在使用 9.7.0 版免费的 graphDB。
如果有人帮助我,我将不胜感激。提前致谢!
您使用了错误的 MIME 类型 - 应该是 application/x-turtle 而不是 text/turtle。该请求将如下所示:
curl -X POST -H "Content-Type:application/x-turtle" -T "/home/Desktop/onto.ttl" http://localhost:7200/repositories/testrepository1/statements