I am loading a video in YTPlayerView, but for loading playlist in YTPlayerView we need playlistId. I don't see this in the response
playerVars = @{
@"autoplay" : @1
,@"rel" : @0
,@"playsinline" : @1
,@"showinfo" : @0
,@"modestbranding" : @1
,@"listType":@"playlist"
,@"autohide":@1
};
[[YTPlayerInstance instance] loadWithVideoId:@"jrmilwr1y6w" playerVars:playerVars];
This is OK
[[YTPlayerInstance instance] loadWithPlaylistId:playListId playerVars:playerVars];
Where is this playListId in response. How can I get this playListId?