From 30d396618b3a38e574b0c5f921bb12e8819b4190 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 17 Dec 2018 22:07:57 +0100 Subject: [PATCH] Added app remote control scope (#309) * Added app-remote-control authorization scope * Fixed tabs to spaces --- SpotifyAPI.Web/Enums/Scope.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/SpotifyAPI.Web/Enums/Scope.cs b/SpotifyAPI.Web/Enums/Scope.cs index 534d34c6..569c29e7 100644 --- a/SpotifyAPI.Web/Enums/Scope.cs +++ b/SpotifyAPI.Web/Enums/Scope.cs @@ -55,8 +55,11 @@ namespace SpotifyAPI.Web.Enums [String("user-modify-playback-state")] UserModifyPlaybackState = 65536, - + [String("user-read-currently-playing")] - UserReadCurrentlyPlaying = 131072 + UserReadCurrentlyPlaying = 131072, + + [String("app-remote-control")] + AppRemoteControl = 262144 } }