I have JSON:
{
title: "Some title",
author: "Name",
text: "This is text..."
}
that I want to store to my Riak via curl.I'm using command:
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..."}"
And when I try to see what's in the bucket called news with key news1 via Firefox I get only: {title:Some
What is not correct here?