我有JSON:
{
title: "Some title",
author: "Name",
text: "This is text..."
}
我想通过curl.I' m使用命令存储到我的Riak:
curl -v -X PUT http://192.168.56.12:10018/riak/news/news1 -H "Content-Type: application/json" -d "{"title":"Some title","author":"Name","text":"This is text..."}"
当我试图通过Firefox查看带有关键news1的新闻中的内容时,我只得到:{title:Some
这里有什么不正确的?
答案 0 :(得分:1)
你对-d
的论证应该是单引号:
-d '{"title":"Some.....}'