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
Describe the bug get_album doesn't fetch audioPlaylistId for some albums. whether it is authenticated or not, both fail
To Reproduce
fromytmusicapiimportYTMusicytmusic=YTMusic("oauth.json")
ytmusic2=YTMusic()
browse_id="MPREb_6egF9klMJg7"album_details=ytmusic.get_album(browse_id)
print(album_details['audioPlaylistId'])
album_details=ytmusic2.get_album(browse_id)
print(album_details['audioPlaylistId'])
# verify that a playlist id for this album does existexpected_playlist_id="OLAK5uy_k8nXdYeGt9_ES_a_n-UHkL2W3n2coCR_4"fetched_browse_id=ytmusic.get_album_browse_id(expected_playlist_id)
assertfetched_browse_id==browse_id
prints
None
None
with the assert passing
The text was updated successfully, but these errors were encountered:
Describe the bug
get_album
doesn't fetchaudioPlaylistId
for some albums. whether it is authenticated or not, both failTo Reproduce
prints
with the assert passing
The text was updated successfully, but these errors were encountered: