mirror of
https://github.com/Rigellute/spotify-tui.git
synced 2026-04-27 00:25:53 +03:00
[GH-ISSUE #401] "Daily Mix" playlists missing #163
Labels
No labels
bug
enhancement
good first issue
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-tui#163
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zsolt-donca on GitHub (Apr 15, 2020).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/401
When using the web client or the official desktop client, I have several "Daily Mix" playlists, from 1 to 6 at the moment. However, when using spotify-tui, I only have "Daily Mix 1" under the "Playlists" section. Is there something I can do to make all these auto-generated "Daily Mix" playlists appear? Thank you.
@TimotheeGerber commented on GitHub (Apr 18, 2020):
Unfortunately, it seems that there is no way to get the "Daily Mix" playlists from the official Spotify API. I had a look and didn't find any endpoint for it. So,
spotify-tuiwon't be able to automatically fetch these playlist for everyone.However, you can add these playlists to your library (click on the heart or the three dots + add to library) in the official Spotify client or the web client. Then, they should be accessible from the playlists section of
spotify-tui. Note that I don't know if there are still dynamic once pinned. I hope so.Edit: My bad. There is a way to get those playlists. Not by an API endpoint, but like the other "Made for you" playlists. I am preparing a PR to add them for everyone.
@TimotheeGerber commented on GitHub (Apr 19, 2020):
Finally, there won't be a PR. The trick used in
made_for_you_search_and_addfunction is only working when the "Daily Mix X" playlist is already in the user library (it was the case for me, that's why I fought it was possible). If it is not the case, the spotify-owned playlist will no be in the first results of the search API call and won't be added to theMade for yousection ofspotify-tui.I am sorry for the false hope about automatically fetching those playlists. It is still possible to add them to your library to see them in
spotify-tui. And I checked the Spotify documentation: even when saved, the daily mix are still regularly refreshed!@zsolt-donca commented on GitHub (Apr 19, 2020):
Thank you for your follow-up! I can confirm that clicking on the heart for all my "Daily Mix" lists does make them appear under the "Playlists" section. This is a great workaround! It could be worth adding it under a FAQ section or something.
However, the "Daily mixes" don't appear for me under the "Made For You" section; I have only the following there:
Should they appear here? I don't entirely understand.
@TimotheeGerber commented on GitHub (Apr 19, 2020):
No, they should not appear in the "Made for you" section. Only in the "Playlists" section.
I tried to automatically add them in the "Made for you" section but failed due to the limited Spotify API and its inconsistent search results.
Sorry if my previous post was confusing. I gave some technical information about what I tried in case someone wants to tackle this issue too.
@zsolt-donca commented on GitHub (Apr 19, 2020):
Thank you for the clarification! I think we can close this issue.
@Rigellute commented on GitHub (Apr 21, 2020):
Thanks for the investigation efforts here, greatly appreciated 👍