通过curl将JSON插入Riak

时间:2015-01-03 13:42:14

标签: json curl riak

我有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

这里有什么不正确的?

1 个答案:

答案 0 :(得分:1)

你对-d的论证应该是单引号:

-d '{"title":"Some.....}'