0
youtube apiでphpのタイトルで注文する方法は? search.listのドキュメントでは、orderはオプションのパラメータであると言います。タイトルや日付で印刷するものはどのように注文するのですか? 試し{タイトル順の検索タイトルapi
// Call the search.list method to retrieve results matching the specified
// query term.
$searchResponse = $youtube->search->listSearch('id,snippet', array(
'q' => $_GET['q'],
'maxResults' => $_GET['maxResults'],
));
$videos = '';
$channels = '';
$playlists = '';
// Add each result to the appropriate list, and then display the lists of
// matching videos, channels, and playlists.
foreach ($searchResponse['items'] as $searchResult) {
switch ($searchResult['id']['snippet']) {
case 'youtube#video':
$videos .= sprintf('<li>title=%s link = http://youtube.com/watch?v=%s/ channelid = %s</li><br> ',
$searchResult['snippet']['title'], $searchResult['id']['videoId'], $searchResult['snippet']['channelTitle']);
break;
おかげで!私は仕事にそれを得た –
恐ろしい!私はそれを聞いてうれしい。 –
私が 'order' => 'viewCount'を実行すると、何も返されません。 –