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
We only support the [Authorization Code Flow](https://oauth.net/2/grant-types/authorization-code/).
21
+
22
+
### Tested OpenID providers
21
23
22
24
These providers are OpenID compliant, which means you can use [autodiscovery](https://openid.net/specs/openid-connect-discovery-1_0.html).
23
25
@@ -30,7 +32,7 @@ These providers are OpenID compliant, which means you can use [autodiscovery](ht
30
32
-[Azure Active Directory](https://docs.microsoft.com/en-us/azure/active-directory) ([Example configuration](./docs/config-examples/azure-active-directory.md))
These providers implement the OAuth2 spec, but are not OpenID providers, which means you must configure the authorization and token endpoints yourself.
36
38
@@ -249,14 +251,14 @@ are not distributed as part of the bridge.
249
251
250
252
AppAuth supports three options for dependency management.
251
253
252
-
1.**CocoaPods**
254
+
1.**CocoaPods**
253
255
254
256
```sh
255
257
cd ios
256
258
pod install
257
259
```
258
260
259
-
2. **Carthage**
261
+
2. **Carthage**
260
262
261
263
With [Carthage](https://github.com/Carthage/Carthage), add the following line to your `Cartfile`:
262
264
@@ -268,7 +270,7 @@ AppAuth supports three options for dependency management.
268
270
269
271
Add a copy files build step for`AppAuth.framework`: open Build Phases on Xcode, add a new "Copy Files" phase, choose "Frameworks" as destination, add `AppAuth.framework` and ensure "Code Sign on Copy" is checked.
270
272
271
-
3. **Static Library**
273
+
3. **Static Library**
272
274
273
275
You can also use [AppAuth-iOS](https://github.com/openid/AppAuth-iOS) as a static library. This
274
276
requires linking the library and your project and including the headers. Suggested configuration:
0 commit comments