0
私はビデオのリストを検索してチャンネルアイコンで画面に表示したいが、検索クエリ内でchannel_idまたはchannel_iconの直接リンクを取得する方法はわかりません。Youtube API V3 - チャンネルアイコンフィールドで動画を検索する方法は?
私はyoutubeの開発者ページ(Java)の例を次のようにしています。検索結果にchannel_idまたはchannel_iconが含まれていますか?
search.setFields("items(id/videoId,snippet/title,snippet/thumbnails/default/url)");
私は私の問題を解決した
、私は私のフィールドのフィルタを編集し、[SOLVED]、完全なコード:
search = youtube.search().list("id,snippet");
search.setFields("items(id/videoId,snippet/title,snippet/thumbnails/default/url,snippet/channelId,snippet/channelTitle)");
// or just remove fields filter and then the response will constant all fileds for you
ただ、私はchannelIdを持って、私はチャンネルアイコンを取得することができますURLを自分のチャンネルに置き換えてください。
アウトスレッド[どのように私はYouTubeのチャンネルからのIDを取得することができますか?](http://stackoverflow.com/questions/14366648/you-can-i-get-a-channel-id-from-youtube)を参照してください。 – blizzard