/api/assignRankingScore/{apiKey}/{instanceId}/{graphId}/{rankingId}
curl https://truthsift.com/api/assignRankingScore/54-c874ab70/1/29/31 -d "graph_score=5" -H "Content-Type: application/x-www-form-urlencoded" -X POST
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE ^ E_DEPRECATED);
$post = "graph_score=5" ;
$curl = curl_init();
$url = "https://truthsift.com/api/assignRankingScore/54-c874ab70/1/29/31";
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);