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));

?>
link|improve this question
Is there a reason you're using phpQuery for this specific task? A curl request or even a file_get_contents would work just as well as jumping through the phpQuery hoops to get something that isn't HTML... – Charles Jan 19 at 18:19
You are right, curl request or file_get_contents solve my problem. Thanks. – user1158120 Jan 19 at 22:48
My example didn't work because i haven't Zend folder. (I had only downloaded phpquery-onefile.php) – user1158120 Jan 19 at 22:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.