From 0d630495e1ed5bf1044233ddd3a42a18cc3efa0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fl=C3=A1vio=20Heleno?= Date: Tue, 17 Nov 2015 18:16:51 -0200 Subject: [PATCH] New Spotify Scopes --- src/OAuth/OAuth2/Service/Spotify.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/OAuth/OAuth2/Service/Spotify.php b/src/OAuth/OAuth2/Service/Spotify.php index 5baf7aef..22f645b4 100644 --- a/src/OAuth/OAuth2/Service/Spotify.php +++ b/src/OAuth/OAuth2/Service/Spotify.php @@ -20,11 +20,14 @@ class Spotify extends AbstractService const SCOPE_PLAYLIST_MODIFY_PUBLIC = 'playlist-modify-public'; const SCOPE_PLAYLIST_MODIFY_PRIVATE = 'playlist-modify-private'; const SCOPE_PLAYLIST_READ_PRIVATE = 'playlist-read-private'; + const SCOPE_PLAYLIST_READ_COLABORATIVE = 'playlist-read-collaborative'; const SCOPE_STREAMING = 'streaming'; const SCOPE_USER_LIBRARY_MODIFY = 'user-library-modify'; const SCOPE_USER_LIBRARY_READ = 'user-library-read'; const SCOPE_USER_READ_PRIVATE = 'user-read-private'; const SCOPE_USER_READ_EMAIL = 'user-read-email'; + const SCOPE_USER_READ_BIRTHDAY = 'user-read-birthdate'; + const SCOPE_USER_READ_FOLLOW = 'user-follow-read'; public function __construct( CredentialsInterface $credentials,