WilliamDenniss / AppAuth-iOS_IncrementalAuthDemo

Incremental Auth demo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example Project

Setup & Open the Project

  1. In the Example-iOS_ObjC folder, run the following command to install the AppAuth pod.
pod install
  1. Open the Example-iOS_ObjC.xcworkspace workspace.
open Example-iOS_ObjC.xcworkspace

This workspace is configured to include AppAuth via CocoaPods. You can also directly include AppAuth as a static library using the build targets in the AppAuth.xcodeproj project.

Configuration

The example doesn't work out of the box, you need to configure it with your own client ID.

Information You'll Need

  • Issuer
  • Client ID
  • Redirect URI

How to get this information varies by IdP, but we have instructions for some OpenID Certified providers.

Configure the Example

In the file AppAuthExampleViewController.m

  1. Update kIssuer with the IdP's issuer.
  2. Update kClientID with your new client id.
  3. Update kRedirectURI redirect URI

In the file Info.plist

Fully expand "URL types" (a.k.a. CFBundleURLTypes) and replace com.example.app with the scheme of your redirect URI. The scheme is everything before the colon (:). For example, if the redirect URI is com.example.app:/oauth2redirect/example-provider, then the scheme would be com.example.app.

Running the Example

Now your example should be ready to run.

About

Incremental Auth demo


Languages

Language:Objective-C 99.1%Language:Ruby 0.9%