You can register your application in either of two ways, as described in the next two sections.
Now you need to register your application in the Microsoft Application Registration Portal:
- Register your application via the Microsoft Application Registration Portal
- Enter a name for your application and your email
- Make sure the option for Guided Setup is checked
- Follow the instructions to obtain the application ID and paste it into your code
- Go to Microsoft Application Registration Portal
- Enter a name for your application and your email
- Make sure the option for Guided Setup is unchecked
- Click
Add Platform
, then selectNative Application
and clickSave
- 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"
-
Control+click
Info.plist
to bring up the contextual menu, and then click:Open As
>Source Code
-
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>
-
Replace
[Your_Application_Id_Here]
with the Application Id you just registered