Skip to content

Commit 018ae10

Browse files
Tyler WhitneyTyler Whitney
authored andcommitted
address github 46979 - add missing step
1 parent 2e9baef commit 018ae10

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed
54.6 KB
Loading

articles/active-directory/develop/scenario-daemon-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.devlang: na
1313
ms.topic: conceptual
1414
ms.tgt_pltfrm: na
1515
ms.workload: identity
16-
ms.date: 01/31/2020
16+
ms.date: 02/03/2020
1717
ms.author: jmprieur
1818
ms.custom: aaddev, identityplatformtop40
1919

articles/active-directory/develop/single-sign-on-macos-ios.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.devlang: na
1414
ms.topic: conceptual
1515
ms.tgt_pltfrm: na
1616
ms.workload: identity
17-
ms.date: 08/28/2019
17+
ms.date: 02/03/2020
1818
ms.author: twhitney
1919
ms.reviewer:
2020
ms.custom: aaddev
@@ -67,9 +67,9 @@ For the Microsoft identity platform to know which applications can share tokens,
6767

6868
The way the Microsoft identity platform tells apps that use the same Application ID apart is by their **Redirect URIs**. Each application can have multiple Redirect URIs registered in the onboarding portal. Each app in your suite will have a different redirect URI. For example:
6969

70-
App1 Redirect URI: `msauth.com.contoso.mytestapp1://auth`
71-
App2 Redirect URI: `msauth.com.contoso.mytestapp2://auth`
72-
App3 Redirect URI: `msauth.com.contoso.mytestapp3://auth`
70+
App1 Redirect URI: `msauth.com.contoso.mytestapp1://auth`
71+
App2 Redirect URI: `msauth.com.contoso.mytestapp2://auth`
72+
App3 Redirect URI: `msauth.com.contoso.mytestapp3://auth`
7373

7474
> [!IMPORTANT]
7575
> The format of redirect uris must be compatible with the format MSAL supports, which is documented in [MSAL Redirect URI format requirements](redirect-uris-ios.md#msal-redirect-uri-format-requirements).
@@ -204,6 +204,16 @@ func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>)
204204
MSALPublicClientApplication.handleMSALResponse(url, sourceApplication: sourceApp)
205205
}
206206
```
207+
208+
## Add a new keychain group
209+
210+
Add a new keychain group to your project **Capabilities**. The keychain group should be:
211+
* `com.microsoft.adalcache` on iOS
212+
* `com.microsoft.identity.universalstorage` on macOS.
213+
214+
![](media/single-sign-on-macos-ios/keychain_example.png)
215+
216+
For more information, see [keychain groups](howto-v2-keychain-objc.md).
207217

208218
## Next steps
209219

0 commit comments

Comments
 (0)