You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just as an FYI, I've been looking into this as well as its a feature I want to work.
The problem is
YouTubePlaylistControl.py:55 params["login"] = "true"
-- By commenting this out it works fine
However, I'm sure that was in there for some other reason, so I wonder if there is a way to tell if its a public playlist or a user_feed? Add in a source parameter?
Details:
I attempted the following with JSONRPC (xbmcjson module): >>> xbmc.Playlist.Add(playlistid=1,item={"file":"plugin://plugin.video.youtube/?path=/root/video&action=play_all&playlist=RDHCZlZkD1cA4Uw"})
{u'jsonrpc': u'2.0', u'id': 4, u'result': u'OK'} >>> xbmc.Player.Open(item={"playlistid":1,"position":0})
{u'jsonrpc': u'2.0', u'id': 5, u'result': u'OK'}
xbmc: Pops the User login page.
After commenting out the line mentioned above it works fine.
Is there any reason or why are playlists only working when logged in?
Public playlists should work even if no credentials are specified.
I tried starting a playlist via JSON RPC and if not logged in the youtube settings dialog pops up but nothing happens.
The text was updated successfully, but these errors were encountered: