使用YouTube API获取频道

时间:2014-07-18 12:07:38

标签: java android youtube-api youtube-channels

我正在尝试使用Android中的YouTube API v3获取我的YouTube帐户下的所有频道详情。这是相同的代码。

YouTube youtube = new YouTube.Builder(transport, jsonFactory,
                        credential).setApplicationName(Constants.APP_NAME)
                        .build();
ChannelListResponse clr = youtube.channels()
                            .list("contentDetails").setMine(true).execute();

Log.d("","Channel count = "+clr.getItems().size());

目前,我已在我的帐户下配置了2个频道。但上面的行总是将通道数打印为1。

有关如何使用API​​获取所有频道详情的想法吗?

提前致谢。

1 个答案:

答案 0 :(得分:2)

尝试使用此代码,该代码来自https://developers.google.com/youtube/v3/code_samples/java

// Construct a request to retrieve the current user's channel ID.
        // See https://developers.google.com/youtube/v3/docs/channels/list
        YouTube.Channels.List channelRequest = youtube.channels().list("contentDetails");
        channelRequest.setMine(true);

        // In the API response, only include channel information needed
        // for this use case.
        channelRequest.setFields("items/contentDetails");
        ChannelListResponse channelResult = channelRequest.execute();

        List<Channel> channelsList = channelResult.getItems();
        if (channelsList != null) {
            // The user's default channel is the first item in the list.
            String channelId = channelsList.get(0).getId();

            //USE FOR LOOP HERE TO RETRIEVE ALL CHANNELS 
        }

感谢。这可能会对你有帮助。