Properties that reference this object type:
Syntax
{
"domains": [
"{string}"
],
"supportsAnonymousAccess": {boolean},
"supportsAnonymizedPayloads": {boolean}
}
{
"type": "object",
"properties": {
"domains": {
"type": "array",
"description": "A list of domains that the link message handler can register for, and when they are matched the app will be invoked",
"items": {
"type": "string",
"maxLength": 2048
}
},
"supportsAnonymousAccess": {
"type": "boolean",
"description": "A boolean value that indicates whether the app\u0027s link message handler supports anonymous invoke flow. [Deprecated]. This property has been superceded by \u0027supportsAnonymizedPayloads\u0027.",
"default": false
},
"supportsAnonymizedPayloads": {
"type": "boolean",
"description": "A boolean value that indicates whether the app\u0027s link message handler supports anonymous invoke flow.",
"default": false
}
}
}
{
"domains": [
"{string}"
],
"supportsAnonymizedPayloads": {boolean}
}
{
"type": "object",
"properties": {
"domains": {
"type": "array",
"description": "A list of domains that the link message handler can register for, and when they are matched the app will be invoked",
"items": {
"type": "string",
"maxLength": 2048
}
},
"supportsAnonymizedPayloads": {
"type": "boolean",
"description": "A boolean that indicates whether the app\u0027s link message handler supports anonymous invoke flow.",
"default": false
}
},
"additionalProperties": false
}
{
"domains": [
"{string}"
],
"supportsAnonymizedPayloads": {boolean}
}
{
"type": "object",
"properties": {
"domains": {
"type": "array",
"description": "A list of domains that the link message handler can register for, and when they are matched the app will be invoked",
"items": {
"type": "string",
"maxLength": 2048
}
},
"supportsAnonymizedPayloads": {
"type": "boolean",
"description": "A boolean that indicates whether the app\u0027s link message handler supports anonymous invoke flow.",
"default": false
}
}
}
Properties
domains
Array of domains that the link message handler can register for, and when they are matched the app will be invoked.
Constraints
Maximum string length: 2048.
supportsAnonymousAccess
[Deprecated]. This property has been superceded by supportsAnonymizedPayloads.
Supported values
Default value: False.
supportsAnonymizedPayloads
A boolean value that indicates whether the app's link message handler supports anonymous invoke flow. To enable zero install for link unfurling, the value needs to be set to true.
Supported values
Default value: False.
Examples
{
"composeExtensions": [
{
"messageHandlers": [
{
"value": {
"domains": [
"mysite.someplace.com",
"othersite.someplace.com"
],
"supportsAnonymizedPayloads": false
}
}
]
}
]
}