Hi,
I am using Abdera in a web service to output Atom in both xml and json. The
xml is fine, but I have a question about the json representation. I am
serializing an object into an Entry¹s content element, which is not a
problem with xml. However, when I request JSON I expect {³id²:²asdf²,
³title²:²title², ³content²: {³something²: ³foobar²}}, but get:
>>
>> {
>> "id":"asdf",
>> "title":"title",
>> "content":"{\"something\":\"foobar\"}",
>> "updated":"2011-09-15T18:13:39.401Z"
>> }
>>
>>
Is this the appropriate result in JSON (the content element represented as
text)?
Thanks,
Jack Matthews