My code trying to call to a steam api JSON file will not output to a var_dump it just continues to say bool(false)
<?php
$steamkey = "removed";
$id_user = '76561198059606697';
$apifr = "http://a...content-available-to-author-only...d.com/ISteamUser/GetPlayerSummaries/v0002/?key=".$steamkey."&steamids=".$id_user."";
print("(test) JSON File : $apifr");
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,$apifr);
$result=curl_exec($ch);
var_dump($result);
curl_close($ch);
?>
I'm not sure how to use CURL and I don't know whats going wrong here.