diff --git a/src/IF.Lastfm.Core/Api/Enums/LastResponseStatus.cs b/src/IF.Lastfm.Core/Api/Enums/LastResponseStatus.cs index e03acc7..4046407 100644 --- a/src/IF.Lastfm.Core/Api/Enums/LastResponseStatus.cs +++ b/src/IF.Lastfm.Core/Api/Enums/LastResponseStatus.cs @@ -4,27 +4,6 @@ public enum LastResponseStatus { Unknown = 0, - /// - /// The request was successful! - /// - Successful = 20, - - /// - /// The request has been cached, it will be sent later - /// - Cached = 21, - - /// - /// The request could not be sent, and could not be cached. - /// Check the Exception property of the response for details. - /// - CacheFailed = 22, - - /// - /// The request failed, check for network connectivity - /// - RequestFailed = 23, - /// /// The service requested does not exist (2) /// @@ -77,7 +56,7 @@ public enum LastResponseStatus /// /// The request signature was invalid. Check that your API key and secret are valid. (13) - /// You can generate new keys at http://www.last.fm/api/accounts + /// You can generate new keys at https://www.last.fm/api/account/create /// BadMethodSignature = 13, @@ -86,6 +65,33 @@ public enum LastResponseStatus /// TemporaryFailure = 16, + /// + /// User required to be logged in. (17) + /// Requested profile might not have privacy set to public. + /// + LoginRequired = 17, + + /// + /// The request was successful! + /// + Successful = 20, + + /// + /// The request has been cached, it will be sent later + /// + Cached = 21, + + /// + /// The request could not be sent, and could not be cached. + /// Check the Exception property of the response for details. + /// + CacheFailed = 22, + + /// + /// The request failed, check for network connectivity + /// + RequestFailed = 23, + /// /// This API key has been suspended, please generate a new key at http://www.last.fm/api/accounts (26) /// @@ -93,6 +99,7 @@ public enum LastResponseStatus /// /// This API key has been rate-limited because too many requests have been made in a short period. Retry later (29) + /// For more information on rate limits, please contact Last.FM at the partners@last.fm email address. /// RateLimited = 29 }