Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions IdentityCore/src/MSIDConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,8 @@ extern NSString * _Nonnull const MSID_FRT_STATUS_DISABLED;
extern NSString * _Nonnull const MSID_BROWSER_RESPONSE_SWITCH_BROWSER;
extern NSString * _Nonnull const MSID_BROWSER_RESPONSE_SWITCH_BROWSER_RESUME;

extern NSString * _Nonnull const MSID_BOUND_RT_REDEEM;

extern NSString * _Nonnull const MSID_FLIGHT_USE_V2_WEB_RESPONSE_FACTORY;
extern NSString * _Nonnull const MSID_FLIGHT_SUPPORT_DUNA_CBA;
extern NSString * _Nonnull const MSID_FLIGHT_DISABLE_JIT_TROUBLESHOOTING_LEGACY_AUTH;
Expand Down
3 changes: 3 additions & 0 deletions IdentityCore/src/MSIDConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@
NSString *const MSID_BROWSER_RESPONSE_SWITCH_BROWSER = @"switch_browser";
NSString *const MSID_BROWSER_RESPONSE_SWITCH_BROWSER_RESUME = @"switch_browser_resume";

// Bound App Refresh token constants
NSString *const MSID_BOUND_RT_REDEEM = @"bound_rt_redeem";

NSString *const MSID_FLIGHT_USE_V2_WEB_RESPONSE_FACTORY = @"use_v2_web_response_factory";
NSString *const MSID_FLIGHT_SUPPORT_DUNA_CBA = @"support_duna_cba_v2";
NSString *const MSID_FLIGHT_DISABLE_JIT_TROUBLESHOOTING_LEGACY_AUTH = @"disable_jit_remediation_legacy_auth";
Expand Down
1 change: 1 addition & 0 deletions IdentityCore/src/MSIDOAuth2Constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,4 @@ extern NSString *const MSID_CCS_REQUEST_ID_RESPONSE;
extern NSString *const MSID_CCS_REQUEST_SEQUENCE_KEY;
extern NSString *const MSID_CCS_REQUEST_SEQUENCE_RESPONSE;
extern NSString *const MSID_BOUND_DEVICE_ID_CACHE_KEY;
extern NSString *const MSID_BOUND_RT_EXCHANGE;
1 change: 1 addition & 0 deletions IdentityCore/src/MSIDOAuth2Constants.m
Original file line number Diff line number Diff line change
Expand Up @@ -181,3 +181,4 @@
NSString *const MSID_CCS_REQUEST_SEQUENCE_RESPONSE = @"ccs-request-sequence";

NSString *const MSID_BOUND_DEVICE_ID_CACHE_KEY = @"bound_device_id";
NSString *const MSID_BOUND_RT_EXCHANGE = @"bound_rt_exchange";
2 changes: 2 additions & 0 deletions IdentityCore/src/parameters/MSIDRequestParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@

- (NSURL *)tokenEndpoint;

@property (nonatomic) BOOL isBoundAppRefreshTokenRequested;

#pragma mark Methods
- (void)setCloudAuthorityWithCloudHostName:(NSString *)cloudHostName;
- (NSString *)allTokenRequestScopes;
Expand Down
Loading