I am currently using facebook and I have a callback method that returns a JSON result as a string.
The result has the following format:
{
"request": "420211088059698",
"to": [
"100002669403922",
"100000048490273"
]
}
How would I go about parsing the "to" into a list of some sort? This way I can use this list to verify that the user actually did indeed send a request to a friend to play the game.
Thanks guys