Add fan_dash_feed_updates endpoint support#18
Merged
ALERTua merged 1 commit intoALERTua:mainfrom Mar 16, 2026
Merged
Conversation
New get_feed() method retrieves the authenticated user's music feed (new releases, fan purchases, fan picks). Feed is auth-only — the fan_id must match the identity cookie. New models: FeedStory, FeedTrack, FeedBandInfo, FeedFanInfo, FeedResponse New parsers for all feed response structures. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Overview
This PR adds a new
The code follows existing patterns in the codebase and includes proper error handling for authentication requirements. Files Reviewed (6 files)
|
Owner
|
Thank you for your valuable contribution! I'm reviewing it right now. |
Owner
|
Okay, I'm merging this. I will improve here and there afterward. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I was poking around the Bandcamp API, hoping that I could add some more social features. That didn't really pan out but I did find this endpoint, which we can use to add Bandcamp 'feed' stuff to the Discover tab in Music Assistant via recommendations().
I deleted some of the tests that the robot created as I didn't feel they were high-value. But if there's something test-wise you want me to cover that I didn't, happy to add them.
New get_feed() method retrieves the authenticated user's music feed (new releases, fan purchases, fan picks). Feed is auth-only — the fan_id must match the identity cookie.
New models: FeedStory, FeedTrack, FeedBandInfo, FeedFanInfo, FeedResponse New parsers for all feed response structures.