You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,7 @@ with optional overrides.
128
128
-**register** - (`{ [key: string]: value }`) headers to be passed during registration request.
129
129
-**useNonce** - (`boolean`) _IOS_ (default: true) optionally allows not sending the nonce parameter, to support non-compliant providers
130
130
-**usePKCE** - (`boolean`) (default: true) optionally allows not sending the code_challenge parameter and skipping PKCE code verification, to support non-compliant providers.
131
+
-**skipCodeExchange** - (`boolean`) (default: false) just return the authorization response, instead of automatically exchanging the authorization code. This is useful if this exchange needs to be done manually (not client-side)
131
132
132
133
#### result
133
134
@@ -330,6 +331,19 @@ Add the following code to `AppDelegate.m` (to support iOS 10 and below)
330
331
+ }
331
332
```
332
333
334
+
If you want to support universal links, add the following to `AppDelegate.m` under `continueUserActivity`
335
+
336
+
```diff
337
+
+ if ([userActivity.activityType isEqualToString:NSUserActivityTypeBrowsingWeb]) {
0 commit comments