SKExternalLinkAccount
A dictionary that contains localized URLs to an external website for account creation or management.
Properties
| Name | Type | Description |
|---|---|---|
Any Key | string |
Discussion
Use this information property list key if your app has the com.apple.developer.storekit.external-link.account entitlement. Each key is a string that is a lowercase ISO 3166-1 alpha-2 country code, the value for which is a URL to the localized version of the external website for that locale. The dictionary must contain a key with the string * that maps to a default URL.
The following shows a property list with a default URL and a specific URL for the jp locale:
<plist>
<dict>
<key>SKExternalLinkAccount</key>
<dict>
<key>*</key>
<string>https://example.com</string>
<key>jp</key>
<string>https://example.com/jp</string>
</dict>
</dict>
</plist>