I'm try to getting JSON data but getting Error.
Unexpected character encountered while parsing value: . Path '', line 0, position 0.
I'm using Net 4.5 and JSON.Net Framework Here my code
WebClient net = new WebClient();
string str = await net.DownloadStringTaskAsync(url);
JObject o = JObject.Parse(str); // ERROR Here
And my code JSON Data View on Webservice http://sv1.volcanosoft.com/test/index.php?area=ho-chi-minh this site format index.php UTF-8 and header of php file
header('Content-Type:application/json; charset=utf-8');
echo '{"item":';
echo json_encode($data);
echo '}';