OIDAuthStateErrorDelegate.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*! @file OIDAuthStateErrorDelegate.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. @class OIDAuthState;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @protocol OIDAuthStateErrorDelegate
  20. @brief Delegate of the OIDAuthState used to monitor errors.
  21. */
  22. @protocol OIDAuthStateErrorDelegate <NSObject>
  23. /*! @brief Called when an authentication occurs, which indicates the auth session is invalid.
  24. @param state The @c OIDAuthState on which the error occurred.
  25. @param error The authorization error.
  26. @discussion This is a hard error (not a transient network issue) that indicates a problem with
  27. the authorization. You should stop using the @c OIDAuthState when such an error is
  28. encountered. If the \NSError_code is @c ::OIDErrorCodeOAuthInvalidGrant then
  29. the session may be recoverable with user interaction (i.e. re-authentication). In all cases
  30. you should consider the user unauthorized, and remove locally cached resources that require
  31. that authorization. @c OIDAuthState will call this method automatically if it encounters
  32. an OAuth error (that is, an HTTP 400 response with a valid OAuth error response) during
  33. authorization or token refresh (such as performed automatically when using
  34. @c OIDAuthState.performActionWithFreshTokens:). You can signal authorization errors with
  35. @c OIDAuthState.updateWithAuthorizationError:.
  36. @see https://tools.ietf.org/html/rfc6749#section-5.2
  37. */
  38. - (void)authState:(OIDAuthState *)state didEncounterAuthorizationError:(NSError *)error;
  39. @optional
  40. /*! @brief Called when a network or other transient error occurs.
  41. @param state The @c OIDAuthState on which the error occurred.
  42. @param error The transient error.
  43. @discussion This is a soft error, typically network related. The @c OIDAuthState is likely
  44. still valid, and should not be discarded. Retry the request using an incremental backoff
  45. strategy. This is only called when using the @c OIDAuthState convenience methods such as
  46. @c OIDAuthState.performActionWithFreshTokens:. If you are refreshing the tokens yourself
  47. outside of @c OIDAuthState class, it will never be called.
  48. */
  49. - (void)authState:(OIDAuthState *)state didEncounterTransientError:(NSError *)error;
  50. @end
  51. NS_ASSUME_NONNULL_END