File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -79,10 +79,10 @@ export const authorize = ({
79
79
] ;
80
80
81
81
if ( Platform . OS === 'android' ) {
82
+ nativeMethodArguments . push ( usePKCE ) ;
82
83
nativeMethodArguments . push ( clientAuthMethod ) ;
83
84
nativeMethodArguments . push ( dangerouslyAllowInsecureHttpRequests ) ;
84
85
nativeMethodArguments . push ( customHeaders ) ;
85
- nativeMethodArguments . push ( usePKCE ) ;
86
86
}
87
87
88
88
if ( Platform . OS === 'ios' ) {
Original file line number Diff line number Diff line change @@ -165,10 +165,10 @@ describe('AppAuth', () => {
165
165
config . scopes ,
166
166
config . additionalParameters ,
167
167
config . serviceConfiguration ,
168
+ config . usePKCE ,
168
169
config . clientAuthMethod ,
169
170
false ,
170
- config . customHeaders ,
171
- config . usePKCE
171
+ config . customHeaders
172
172
) ;
173
173
} ) ;
174
174
@@ -182,10 +182,10 @@ describe('AppAuth', () => {
182
182
config . scopes ,
183
183
config . additionalParameters ,
184
184
config . serviceConfiguration ,
185
+ config . usePKCE ,
185
186
config . clientAuthMethod ,
186
187
false ,
187
- config . customHeaders ,
188
- config . usePKCE
188
+ config . customHeaders
189
189
) ;
190
190
} ) ;
191
191
@@ -199,10 +199,10 @@ describe('AppAuth', () => {
199
199
config . scopes ,
200
200
config . additionalParameters ,
201
201
config . serviceConfiguration ,
202
+ config . usePKCE ,
202
203
config . clientAuthMethod ,
203
204
true ,
204
- config . customHeaders ,
205
- config . usePKCE
205
+ config . customHeaders
206
206
) ;
207
207
} ) ;
208
208
} ) ;
@@ -220,10 +220,10 @@ describe('AppAuth', () => {
220
220
config . scopes ,
221
221
config . additionalParameters ,
222
222
config . serviceConfiguration ,
223
+ config . usePKCE ,
223
224
config . clientAuthMethod ,
224
225
false ,
225
- customHeaders ,
226
- config . usePKCE
226
+ customHeaders
227
227
) ;
228
228
} ) ;
229
229
} ) ;
@@ -374,10 +374,10 @@ describe('AppAuth', () => {
374
374
config . scopes ,
375
375
config . additionalParameters ,
376
376
config . serviceConfiguration ,
377
+ config . usePKCE ,
377
378
config . clientAuthMethod ,
378
379
false ,
379
- customHeaders ,
380
- config . usePKCE
380
+ customHeaders
381
381
) ;
382
382
} ) ;
383
383
} ) ;
You can’t perform that action at this time.
0 commit comments