parse json data from postgresql code example
Example 1: how to read data from curl php
$data = json_decode(file_get_contents('php://input'), true);
Example 2: how get data from json in c#
public class JSONResponse
{
public string status { get; set; }
public List<Article> articles { get; set; }
}
JSONResponse response = JsonConvert.DeserializeObject<JSONResponse>(myJSON);