I'm switching my code form XML to JSON.
But i can't find how to get a json string from a given url.
The url is something like this: "https://api.facebook.com/method/fql.query?query=.....&format=json"
I used XDouments before, there i could use the load method:
XDocument doc = XDocument.load("URL");
What is the equivalent of this method for Json? I'm using JSON.NET.