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 XDocuments 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.