123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- /*! @file OIDTokenResponse.h
- @brief AppAuth iOS SDK
- @copyright
- Copyright 2015 Google Inc. All Rights Reserved.
- @copydetails
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- #import <Foundation/Foundation.h>
- @class OIDTokenRequest;
- NS_ASSUME_NONNULL_BEGIN
- /*! @brief Represents the response to an token request.
- @see https://tools.ietf.org/html/rfc6749#section-3.2
- @see https://tools.ietf.org/html/rfc6749#section-4.1.3
- */
- @interface OIDTokenResponse : NSObject <NSCopying, NSSecureCoding>
- /*! @brief The request which was serviced.
- */
- @property(nonatomic, readonly) OIDTokenRequest *request;
- /*! @brief The access token generated by the authorization server.
- @remarks access_token
- @see https://tools.ietf.org/html/rfc6749#section-4.1.4
- @see https://tools.ietf.org/html/rfc6749#section-5.1
- */
- @property(nonatomic, readonly, nullable) NSString *accessToken;
- /*! @brief The approximate expiration date & time of the access token.
- @remarks expires_in
- @seealso OIDTokenResponse.accessToken
- @see https://tools.ietf.org/html/rfc6749#section-4.1.4
- @see https://tools.ietf.org/html/rfc6749#section-5.1
- */
- @property(nonatomic, readonly, nullable) NSDate *accessTokenExpirationDate;
- /*! @brief Typically "Bearer" when present. Otherwise, another token_type value that the Client has
- negotiated with the Authorization Server.
- @remarks token_type
- @see https://tools.ietf.org/html/rfc6749#section-4.1.4
- @see https://tools.ietf.org/html/rfc6749#section-5.1
- */
- @property(nonatomic, readonly, nullable) NSString *tokenType;
- /*! @brief ID Token value associated with the authenticated session. Always present for the
- authorization code grant exchange when OpenID Connect is used, optional for responses to
- access token refresh requests. Note that AppAuth does NOT verify the JWT signature. Users
- of AppAuth are encouraged to verifying the JWT signature using the validation library of
- their choosing.
- @remarks id_token
- @see http://openid.net/specs/openid-connect-core-1_0.html#TokenResponse
- @see http://openid.net/specs/openid-connect-core-1_0.html#RefreshTokenResponse
- @see http://openid.net/specs/openid-connect-core-1_0.html#IDToken
- @see https://jwt.io
- @discussion @c OIDIDToken can be used to parse the ID Token and extract the claims. As noted,
- this class does not verify the JWT signature.
- */
- @property(nonatomic, readonly, nullable) NSString *idToken;
- /*! @brief The refresh token, which can be used to obtain new access tokens using the same
- authorization grant
- @remarks refresh_token
- @see https://tools.ietf.org/html/rfc6749#section-5.1
- */
- @property(nonatomic, readonly, nullable) NSString *refreshToken;
- /*! @brief The scope of the access token. OPTIONAL, if identical to the scopes requested, otherwise,
- REQUIRED.
- @remarks scope
- @see https://tools.ietf.org/html/rfc6749#section-5.1
- */
- @property(nonatomic, readonly, nullable) NSString *scope;
- /*! @brief Additional parameters returned from the token server.
- */
- @property(nonatomic, readonly, nullable)
- NSDictionary<NSString *, NSObject<NSCopying> *> *additionalParameters;
- /*! @internal
- @brief Unavailable. Please use initWithParameters:.
- */
- - (instancetype)init NS_UNAVAILABLE;
- /*! @brief Designated initializer.
- @param request The serviced request.
- @param parameters The decoded parameters returned from the Authorization Server.
- @remarks Known parameters are extracted from the @c parameters parameter and the normative
- properties are populated. Non-normative parameters are placed in the
- @c #additionalParameters dictionary.
- */
- - (instancetype)initWithRequest:(OIDTokenRequest *)request
- parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
- NS_DESIGNATED_INITIALIZER;
- @end
- NS_ASSUME_NONNULL_END
|