I'm running a Facebook FQL query and getting the results back in the following format. I'm having a heck of a time parsing this. It looks like a bunch of nested arrays and dictionaries but no matter what combination I use I just can't get to the UID level.
Can someone help me with parsing the following? Result is returned as an NSArray (I used the kindofclass method to figure this out).
Any help appreciated!
Cheers.
Thanks.
Can someone help me with parsing the following? Result is returned as an NSArray (I used the kindofclass method to figure this out).
Code:
"fql_result_set" = (
{
"first_name" = John;
"last_name" = Doe;
name = "John Doe";
status = {
message = "Hello";
"status_id" = 12345;
time = 1295311568;
};
uid = 123456789;
},
{
"first_name" = Jane;
"last_name" = Doe;
name = "Jane Doe";
status = {
message = "";
"status_id" = 0;
time = 0;
};
uid = 4567890123;
},
);
name = query1;
Any help appreciated!
Cheers.
Thanks.