Freebase MQL Read Service and PHP file_get_contents

357 Views Asked by At

My Code:

$api_url = "https://www.googleapis.com/freebase/v1-sandbox/mqlread?query=";
$query = $freebase_query."&callback=myfuncname"."&key=".$cfg['fbkey']; 

$opts = array(
  'http'=>array(
    'method'=>"GET",
    'header'=>"Accept-language: en\r\n" .
              "Cookie: foo=bar\r\n"
  )
);

$context = stream_context_create($opts);
$json = file_get_contents($api_url.$query, false, $context, null);
$display = $api_url.$query;
$json_output = json_decode($json);

Error: Warning: file_get_contents(https://www.googleapis.com/freebase/v1-sandbox/mqlread?query=[{"mid": null,"name": null,"topics:mid|=":["/m/0gn30","/m/0tc7"]}]&callback=myfuncname&key=[key]) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in [file name] on line 59

If I paste the URL directly into the browser I get the results back without any problem! So I assume its the way I'm calling the service?

2

There are 2 best solutions below

2
On

Try using curl instead, like this:

$freebase_query = array(array('id' => NULL, 'name' => NULL, 'topics:mid|=' => array('/m/0gn30','/m/0tc7')));
$api_url = 'https://www.googleapis.com/freebase/v1-sandbox/mqlread';
$query = $api_url . '?query=' . urlencode(json_encode($freebase_query));

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $query);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$json_data = json_decode(curl_exec($ch), true);
curl_close($ch);
1
On

Do you have allow_url_fopen set to "on" in php.ini? Is there a reason why you are setting a cookie?