I'm having lots of problems when parsing a JSon and one of it's values has null value.
{
"available_from" : "2012-11-05T00:00:00Z",
"available_to" : "2012-11-30T00:00:00Z",
"category_id" : 2,
"created_at" : "2012-11-05T14:53:39Z",
...
}
For example if "category_id" equals null I get an exception on my parser. What can I do to solve it?
Hope I've explained myself..