Jump to content

Odd error not letting me search more than 50 results.


Jragon

Recommended Posts

Hi!

 

I'm trying to use the bing API thingy to search through a few results.... I can search 50 results but any higher and it gives me:

PHP Notice:  Undefined variable: returnValue in /var/www/lib/Msft/Bing/Search.php on line 738
PHP Notice:  Undefined property: stdClass::$Web in /var/www/lib/bing.php on line 68
PHP Notice:  Trying to get property of non-object in /var/www/lib/bing.php on line 68
PHP Warning:  Invalid argument supplied for foreach() in /var/www/lib/bing.php on line 68

 

My code is:

function __autoload($className)
{
    $fileName = strtr($className,'_',DIRECTORY_SEPARATOR).".php";
    include $fileName;
    return;
}

$apiKey = '0291518CA7B6C789903D60F8AEB4CD30194F1F07';
//$search = $_GET['search'];
//if(isset($_GET['search'])){
$o = new Msft_Bing_Search($apiKey);
$o->setQuery('photography')
->setSource('Web');

$raw = $o->search();
$result = json_decode($raw);
foreach($result->SearchResponse->Web->Results as $value) {
	$feed = locateFeedUrl($value->Url);
	$fh = fopen('feeds.txt', 'a');
	fwrite($fh, $feed . "\n");
}

//}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.