We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_playlist_info()
Version:
spotapi==1.1.3
3.12.5
Code to reproduce the error:
from spotapi import PublicPlaylist playlist = PublicPlaylist("6zCID88oNjNv9zx6puDHKj") playlist_info = playlist.get_playlist_info(limit=100) print(playlist_info)
Observed Behavior: The code outputs a ValidationError:
ValidationError
{ "errors": [ { "message": "Variable 'enableWatchFeedEntrypoint' has an invalid value: Variable 'enableWatchFeedEntrypoint' has coerced Null value for NonNull type 'Boolean!'", "locations": [ { "line": 1, "column": 5055 } ], "extensions": { "classification": "ValidationError" } }, { "message": "Variable 'enableWatchFeedEntrypoint' undefined", "locations": [ { "line": -1, "column": -1 } ], "extensions": { "classification": "ValidationError" } } ], "data": null, "extensions": {} }
Expected Behavior: The get_playlist_info method should return the playlist details without any errors.
get_playlist_info
Additional Information:
enableWatchFeedEntrypoint
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version:
spotapi==1.1.3
3.12.5
Code to reproduce the error:
Observed Behavior:
The code outputs a
ValidationError
:Expected Behavior:
The
get_playlist_info
method should return the playlist details without any errors.Additional Information:
enableWatchFeedEntrypoint
, which is either missing or not properly handled by the API.The text was updated successfully, but these errors were encountered: