php-youtube-api icon indicating copy to clipboard operation
php-youtube-api copied to clipboard

not getting page info into advance search method searchAdvanced()

Open sidHitesh7 opened this issue 11 years ago • 0 comments

use following example

use Madcoda\Youtube;

$youtube = new Youtube(array('key' => '/* Your API key here */'));

// Set Default Parameters $params = array( 'q' => 'Android', 'type' => 'video', 'part' => 'id, snippet', 'maxResults' => 50 );

// Make Intial Call. With second argument to reveal page info such as page tokens. $search = $youtube->searchAdvanced($params, true);

sidHitesh7 avatar Sep 30 '14 14:09 sidHitesh7