added collab playlist scope

This commit is contained in:
Jack Ryder 2016-09-19 20:32:15 +01:00
parent ec8b7a3d3d
commit 31a3b5cdce
2 changed files with 5 additions and 2 deletions

View File

@ -108,7 +108,7 @@ namespace SpotifyAPI.Example
8000,
"26d287105e31491889f3cd293d85bfea",
Scope.UserReadPrivate | Scope.UserReadEmail | Scope.PlaylistReadPrivate | Scope.UserLibraryRead |
Scope.UserReadPrivate | Scope.UserFollowRead | Scope.UserReadBirthdate | Scope.UserTopRead);
Scope.UserReadPrivate | Scope.UserFollowRead | Scope.UserReadBirthdate | Scope.UserTopRead | Scope.PlaylistReadCollaborative);
try
{

View File

@ -42,6 +42,9 @@ namespace SpotifyAPI.Web.Enums
UserReadBirthdate = 2048,
[String("user-top-read")]
UserTopRead = 4096
UserTopRead = 4096,
[String("playlist-read-collaborative")]
PlaylistReadCollaborative = 8192
}
}