Need help to read fantasy sports API by PHP
Hello,
I am trying to read data through fantasy sports API by using PHP but getting Authorization error. can anyone help me to resolve the problem ASAP?
I have given 2 code snippet by which i have tried:
Ex - 1
-----------------------------------------------------
$request= "http://fantasysports.yahooapis.com/fantasy/v2/game/223";
$response = file_get_contents($request);
$obj = simplexml_load_string($response);
Ex - 2
-----------------------------------------------------
$session = curl_init($request);
curl_setopt($session, CURLOPT_HEADER, true);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($session);
curl_close($session);
Please help..
by
4 Replies