Hello I am created IdentityClient
` public MSAuthenticator()
{
IdentityClient = PublicClientApplicationBuilder
.CreateWithApplicationOptions(appOptions)
.WithExperimentalFeatures(true)
.WithLogging(_logger)
.WithIosKeychainSecurityGroup("com.microsoft.adalcache")
.Build();
}`
And added custom Entitlements.plist to .csproj
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>aps-environment</key> <string>development</string>
<key>keychain-access-groups</key>
<array>
<string>$(AppIdentifierPrefix)com.microsoft.adalcache</string>
</array>
</dict>
</plist>`
I still get an error on VS Code, please help!!!
The application cannot access the iOS keychain for the application publisher (the TeamId is null). This is needed to enable Single Sign On between applications of the same publisher. This is an iOS configuration issue. See https://aka.ms/msal-net-enable-keychain-access for more details on enabling keychain access.
user24637963 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.