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

//}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.