【发布时间】:2014-11-26 23:33:35
【问题描述】:
我有这样的代码;它工作正常。但我只想要用户创建的列表。这可能吗?
*/
ChannelListResponse clr = youtube.channels()
.list("contentDetails").setMine(true).execute();
// Get the user's uploads playlist's id from channel list
// response
String uploadsPlaylistId = clr.getItems().get(0)
.getContentDetails().getRelatedPlaylists()
// I want user created lists not uploads or
// favorites
.getUploads();
【问题讨论】:
-
经过更多搜索我在这里找到了答案对不起[在此处输入链接描述][1] [1]:stackoverflow.com/questions/20795665/…