We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ec8b7a3 + 31a3b5c commit 5e12df7Copy full SHA for 5e12df7
SpotifyAPI.Example/WebControl.cs
@@ -108,7 +108,7 @@ private async void RunAuthentication()
108
8000,
109
"26d287105e31491889f3cd293d85bfea",
110
Scope.UserReadPrivate | Scope.UserReadEmail | Scope.PlaylistReadPrivate | Scope.UserLibraryRead |
111
- Scope.UserReadPrivate | Scope.UserFollowRead | Scope.UserReadBirthdate | Scope.UserTopRead);
+ Scope.UserReadPrivate | Scope.UserFollowRead | Scope.UserReadBirthdate | Scope.UserTopRead | Scope.PlaylistReadCollaborative);
112
113
try
114
{
SpotifyAPI/Web/Enums/Scope.cs
@@ -42,6 +42,9 @@ public enum Scope
42
UserReadBirthdate = 2048,
43
44
[String("user-top-read")]
45
- UserTopRead = 4096
+ UserTopRead = 4096,
46
+
47
+ [String("playlist-read-collaborative")]
48
+ PlaylistReadCollaborative = 8192
49
}
50
0 commit comments