File tree 4 files changed +35
-26
lines changed
AppAuth.xcodeproj/xcshareddata/xcschemes
4 files changed +35
-26
lines changed Original file line number Diff line number Diff line change 27
27
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
shouldUseLaunchSchemeArgsEnv = " YES" >
30
+ <MacroExpansion >
31
+ <BuildableReference
32
+ BuildableIdentifier = " primary"
33
+ BlueprintIdentifier = " 340E737B1C5D819B0076B1F6"
34
+ BuildableName = " libAppAuth-iOS.a"
35
+ BlueprintName = " AppAuth-iOS"
36
+ ReferencedContainer = " container:AppAuth.xcodeproj" >
37
+ </BuildableReference >
38
+ </MacroExpansion >
30
39
<Testables >
31
40
<TestableReference
32
41
skipped = " NO" >
39
48
</BuildableReference >
40
49
</TestableReference >
41
50
</Testables >
42
- <MacroExpansion >
43
- <BuildableReference
44
- BuildableIdentifier = " primary"
45
- BlueprintIdentifier = " 340E737B1C5D819B0076B1F6"
46
- BuildableName = " libAppAuth-iOS.a"
47
- BlueprintName = " AppAuth-iOS"
48
- ReferencedContainer = " container:AppAuth.xcodeproj" >
49
- </BuildableReference >
50
- </MacroExpansion >
51
- <AdditionalOptions >
52
- </AdditionalOptions >
53
51
</TestAction >
54
52
<LaunchAction
55
53
buildConfiguration = " Debug"
70
68
ReferencedContainer = " container:AppAuth.xcodeproj" >
71
69
</BuildableReference >
72
70
</MacroExpansion >
73
- <AdditionalOptions >
74
- </AdditionalOptions >
75
71
</LaunchAction >
76
72
<ProfileAction
77
73
buildConfiguration = " Release"
Original file line number Diff line number Diff line change 27
27
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
shouldUseLaunchSchemeArgsEnv = " YES" >
30
+ <MacroExpansion >
31
+ <BuildableReference
32
+ BuildableIdentifier = " primary"
33
+ BlueprintIdentifier = " 341E707D1DE18744004353C1"
34
+ BuildableName = " libAppAuth-tvOS.a"
35
+ BlueprintName = " AppAuth-tvOS"
36
+ ReferencedContainer = " container:AppAuth.xcodeproj" >
37
+ </BuildableReference >
38
+ </MacroExpansion >
30
39
<Testables >
31
40
<TestableReference
32
41
skipped = " NO" >
39
48
</BuildableReference >
40
49
</TestableReference >
41
50
</Testables >
42
- <MacroExpansion >
43
- <BuildableReference
44
- BuildableIdentifier = " primary"
45
- BlueprintIdentifier = " 341E707D1DE18744004353C1"
46
- BuildableName = " libAppAuth-tvOS.a"
47
- BlueprintName = " AppAuth-tvOS"
48
- ReferencedContainer = " container:AppAuth.xcodeproj" >
49
- </BuildableReference >
50
- </MacroExpansion >
51
- <AdditionalOptions >
52
- </AdditionalOptions >
53
51
</TestAction >
54
52
<LaunchAction
55
53
buildConfiguration = " Debug"
70
68
ReferencedContainer = " container:AppAuth.xcodeproj" >
71
69
</BuildableReference >
72
70
</MacroExpansion >
73
- <AdditionalOptions >
74
- </AdditionalOptions >
75
71
</LaunchAction >
76
72
<ProfileAction
77
73
buildConfiguration = " Release"
Original file line number Diff line number Diff line change @@ -120,6 +120,17 @@ NS_ASSUME_NONNULL_BEGIN
120
120
token.
121
121
@see https://tools.ietf.org/html/rfc6749#section-4.1.3
122
122
*/
123
+ - (nullable OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters :
124
+ (nullable NSDictionary <NSString *, NSString *> *)additionalParameters ;
125
+
126
+ /* ! @brief Creates a token request suitable for exchanging an authorization code for an access
127
+ token.
128
+ @param additionalParameters Additional parameters for the token request.
129
+ @param additionalHeaders Additional headers for the token request.
130
+ @return A @c OIDTokenRequest suitable for exchanging an authorization code for an access
131
+ token.
132
+ @see https://tools.ietf.org/html/rfc6749#section-4.1.3
133
+ */
123
134
- (nullable OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters :
124
135
(nullable NSDictionary <NSString *, NSString *> *)additionalParameters
125
136
additionalHeaders :
Original file line number Diff line number Diff line change @@ -187,6 +187,12 @@ - (OIDTokenRequest *)tokenExchangeRequest {
187
187
return [self tokenExchangeRequestWithAdditionalParameters: nil additionalHeaders: nil ];
188
188
}
189
189
190
+ - (OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters :
191
+ (NSDictionary <NSString *, NSString *> *)additionalParameters {
192
+ return [self tokenExchangeRequestWithAdditionalParameters: additionalParameters
193
+ additionalHeaders: nil ];
194
+ }
195
+
190
196
- (OIDTokenRequest *)tokenExchangeRequestWithAdditionalParameters :
191
197
(NSDictionary <NSString *, NSString *> *)additionalParameters
192
198
additionalHeaders :
You can’t perform that action at this time.
0 commit comments