On Sep 21, 2011, at 1:46 PM, Kwasi Gyasi - Agyei wrote:
> "_attachments":[
> {"test":
> {"content_type":"text\/plain",
> "data":"aGVsbG8gd29ybGQ="
> }
> } ]
_attachments is a dictionary, not an array. This should be:
"_attachments”:{
"test":
{"content_type":"text\/plain",
"data":"aGVsbG8gd29ybGQ="
}
}
See <http://wiki.apache.org/couchdb/HTTP_Document_API#Inline_Attachments>
—Jens
