ExtensibleSingleSignOn
The payload that configures an app extension that performs single sign-on (SSO).
Declaration
object ExtensibleSingleSignOnProperties
| Name | Type | Description |
|---|---|---|
AuthenticationMethod | string | The Platform SSO authentication method the extension uses. Requires that the SSO Extension also supports the method. Available in macOS 13 and later, and deprecated in macOS 14. |
DeniedBundleIdentifiers | [string] | An array of bundle identifiers of apps that don’t use SSO provided by this extension. Available in iOS 15 and later, and macOS 12 and later. |
ExtensionData | ExtensibleSingleSignOn.ExtensionData | A dictionary of arbitrary data passed through to the app extension. |
ExtensionIdentifier Required | string | The bundle identifier of the app extension that performs SSO for the specified URLs. |
Hosts | [string] | An array of host or domain names that apps can authenticate through the app extension. Required for The system:
|
PlatformSSO | ExtensibleSingleSignOn.PlatformSSO | The dictionary to configure Platform SSO. Requires |
Realm | string | The realm name for |
RegistrationToken | string | The token this device uses for registration with Platform SSO. Use it for silent registration with the Identity Provider. Requires that |
ScreenLockedBehavior | string | If set to |
TeamIdentifier | string | The team identifier of the app extension. This key is required on macOS and ignored elsewhere. |
Type Required | string | The type of SSO. |
URLs | [string] | An array of URL prefixes of identity providers where the app extension performs SSO. Required for The URLs need to begin with The system:
|
Mentioned in
Discussion
Specify com.apple.extensiblesso as the payload type.
The system supports user channel installation in macOS 11 and later.
Profile availability
Device channel | iOS, macOS, visionOS |
User channel | macOS, Shared iPad |
Allow manual install | NA |
Requires supervision | NA |
Requires user-approved MDM | macOS |
Allowed in user enrollment | iOS, macOS, visionOS |
Allow multiple payloads | iOS, macOS, Shared iPad, visionOS |
Profile example
<?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>PayloadContent</key>
<array>
<dict>
<key>ExtensionData</key>
<dict>
<key>useSiteAutoDiscovery</key>
<true/>
</dict>
<key>ExtensionIdentifier</key>
<string>com.example.com</string>
<key>TeamIdentifier</key>
<string>RandomTeamID</string>
<key>Hosts</key>
<array>
<string>.com.example.com</string>
</array>
<key>Realm</key>
<string>COM.URL.COM</string>
<key>Type</key>
<string>Credential</string>
<key>PayloadIdentifier</key>
<string>com.example.myessopayload</string>
<key>PayloadType</key>
<string>com.apple.extensiblesso</string>
<key>PayloadUUID</key>
<string>dbed949d-39a2-440d-a84b-e0c825cdcb2e</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>Extensible SSO</string>
<key>PayloadIdentifier</key>
<string>com.example.myprofile</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>da3bbbec-a753-4aa7-aeae-a74b7a65c0b5</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>