OIDTokenResponse.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*! @file OIDTokenResponse.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 OIDTokenRequest;
  18. NS_ASSUME_NONNULL_BEGIN
  19. /*! @brief Represents the response to an token request.
  20. @see https://tools.ietf.org/html/rfc6749#section-3.2
  21. @see https://tools.ietf.org/html/rfc6749#section-4.1.3
  22. */
  23. @interface OIDTokenResponse : NSObject <NSCopying, NSSecureCoding>
  24. /*! @brief The request which was serviced.
  25. */
  26. @property(nonatomic, readonly) OIDTokenRequest *request;
  27. /*! @brief The access token generated by the authorization server.
  28. @remarks access_token
  29. @see https://tools.ietf.org/html/rfc6749#section-4.1.4
  30. @see https://tools.ietf.org/html/rfc6749#section-5.1
  31. */
  32. @property(nonatomic, readonly, nullable) NSString *accessToken;
  33. /*! @brief The approximate expiration date & time of the access token.
  34. @remarks expires_in
  35. @seealso OIDTokenResponse.accessToken
  36. @see https://tools.ietf.org/html/rfc6749#section-4.1.4
  37. @see https://tools.ietf.org/html/rfc6749#section-5.1
  38. */
  39. @property(nonatomic, readonly, nullable) NSDate *accessTokenExpirationDate;
  40. /*! @brief Typically "Bearer" when present. Otherwise, another token_type value that the Client has
  41. negotiated with the Authorization Server.
  42. @remarks token_type
  43. @see https://tools.ietf.org/html/rfc6749#section-4.1.4
  44. @see https://tools.ietf.org/html/rfc6749#section-5.1
  45. */
  46. @property(nonatomic, readonly, nullable) NSString *tokenType;
  47. /*! @brief ID Token value associated with the authenticated session. Always present for the
  48. authorization code grant exchange when OpenID Connect is used, optional for responses to
  49. access token refresh requests. Note that AppAuth does NOT verify the JWT signature. Users
  50. of AppAuth are encouraged to verifying the JWT signature using the validation library of
  51. their choosing.
  52. @remarks id_token
  53. @see http://openid.net/specs/openid-connect-core-1_0.html#TokenResponse
  54. @see http://openid.net/specs/openid-connect-core-1_0.html#RefreshTokenResponse
  55. @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
  56. @see https://jwt.io
  57. @discussion @c OIDIDToken can be used to parse the ID Token and extract the claims. As noted,
  58. this class does not verify the JWT signature.
  59. */
  60. @property(nonatomic, readonly, nullable) NSString *idToken;
  61. /*! @brief The refresh token, which can be used to obtain new access tokens using the same
  62. authorization grant
  63. @remarks refresh_token
  64. @see https://tools.ietf.org/html/rfc6749#section-5.1
  65. */
  66. @property(nonatomic, readonly, nullable) NSString *refreshToken;
  67. /*! @brief The scope of the access token. OPTIONAL, if identical to the scopes requested, otherwise,
  68. REQUIRED.
  69. @remarks scope
  70. @see https://tools.ietf.org/html/rfc6749#section-5.1
  71. */
  72. @property(nonatomic, readonly, nullable) NSString *scope;
  73. /*! @brief Additional parameters returned from the token server.
  74. */
  75. @property(nonatomic, readonly, nullable)
  76. NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters;
  77. /*! @internal
  78. @brief Unavailable. Please use initWithParameters:.
  79. */
  80. - (instancetype)init NS_UNAVAILABLE;
  81. /*! @brief Designated initializer.
  82. @param request The serviced request.
  83. @param parameters The decoded parameters returned from the Authorization Server.
  84. @remarks Known parameters are extracted from the @c parameters parameter and the normative
  85. properties are populated. Non-normative parameters are placed in the
  86. @c #additionalParameters dictionary.
  87. */
  88. - (instancetype)initWithRequest:(OIDTokenRequest *)request
  89. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
  90. NS_DESIGNATED_INITIALIZER;
  91. @end
  92. NS_ASSUME_NONNULL_END