Skip to content

Latest commit

 

History

History
53 lines (47 loc) · 1.91 KB

active-directory-develop-guidedsetup-ios-configure.md

File metadata and controls

53 lines (47 loc) · 1.91 KB

Register your application

You can register your application in either of two ways, as described in the next two sections.

Option 1: Express mode

Now you need to register your application in the Microsoft Application Registration Portal:

  1. Register your application via the Microsoft Application Registration Portal
  2. Enter a name for your application and your email
  3. Make sure the option for Guided Setup is checked
  4. Follow the instructions to obtain the application ID and paste it into your code

Option 2: Advanced mode

  1. Go to Microsoft Application Registration Portal
  2. Enter a name for your application and your email
  3. Make sure the option for Guided Setup is unchecked
  4. Click Add Platform, then select Native Application and click Save
  5. Go back to Xcode. In ViewController.swift, replace the line starting with 'let kClientID' with the application ID you just registered:
let kClientID = "Your_Application_Id_Here"
  1. Control+click Info.plist to bring up the contextual menu, and then click: Open As > Source Code
  2. Under the dict root node, add the following:
<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleURLName</key>
        <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>msal[Your_Application_Id_Here]</string>
            <string>auth</string>
        </array>
    </dict>
</array>
  1. Replace [Your_Application_Id_Here] with the Application Id you just registered