I want to use PhpQuery for getting JSON data, but i always obtain an internal error:
NetworkError: 500 Internal Server Error
Test extracted from https://github.com/bluelovers/phpQuery/blob/master/test-cases/test_manual.php:
<?php
require_once('phpQuery-onefile.php');
$url =
'http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=any&format=json';
phpQuery::ajaxAllowHost('api.flickr.com');
phpQuery::getJSON($url, array('jsoncallback' => '?'), 'jsonSuccess');
var_dump(json_decode($json));
?>
curlrequest or even afile_get_contentswould work just as well as jumping through the phpQuery hoops to get something that isn't HTML... – Charles Jan 19 at 18:19