mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 22:56:25 +00:00
Merge pull request #114 from JackRyder/master
added collaborative playlist scope
This commit is contained in:
commit
5e12df71a4
@ -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
|
||||
{
|
||||
|
@ -42,6 +42,9 @@ namespace SpotifyAPI.Web.Enums
|
||||
UserReadBirthdate = 2048,
|
||||
|
||||
[String("user-top-read")]
|
||||
UserTopRead = 4096
|
||||
UserTopRead = 4096,
|
||||
|
||||
[String("playlist-read-collaborative")]
|
||||
PlaylistReadCollaborative = 8192
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user