Merge pull request #114 from JackRyder/master

added collaborative playlist scope
This commit is contained in:
Jonas Dellinger 2016-09-19 21:55:25 +02:00 committed by GitHub
commit 5e12df71a4
2 changed files with 5 additions and 2 deletions

View File

@ -108,7 +108,7 @@ namespace SpotifyAPI.Example
8000, 8000,
"26d287105e31491889f3cd293d85bfea", "26d287105e31491889f3cd293d85bfea",
Scope.UserReadPrivate | Scope.UserReadEmail | Scope.PlaylistReadPrivate | Scope.UserLibraryRead | 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 try
{ {

View File

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