Not able to set validDomains inside the manifest of app in Microsoft registered app

Viewed 209

I want to use deeplinks to open a task module, acc to the documentation, i formed the deep link url as

https://teams.microsoft.com/l/task/b7636409-8e1a-40c0-b80a-7ea4bafdfcce?height=1000&width=1000&title=Preview&url=https://user-docviewer-testing.sentieo.com/?docid=61499c54f8fe3611c2738325&redirect=docviewer&src=app

the documenation further states that this url mentioned inside deeplinkurl should be under validDomains of the app manifest, when i tried editing that, got an error in case of both list type validDomains and string type validDomains ...

What would be the right approach to proceed with this?

in case of string type validDomains - enter image description here

{
"id": "b7636409-8e1a-40c0-b80a-7ea4bafdfcce",
"validDomains": [ " * ", " *. youtube.com" ],
"acceptMappedClaims": null,
"accessTokenAcceptedVersion": 2,
"addIns": [],
"allowPublicClient": null,
"appId": "698ac0a6-9b05-47bf-a1be-d9fcfbcd3538",
"appRoles": [],
"oauth2AllowUrlPathMatching": false,
"createdDateTime": "2021-08-03T13:00:24Z",
"certification": null,
"disabledByMicrosoftStatus": null,
"groupMembershipClaims": null,
"identifierUris": [],
"informationalUrls": {
    "termsOfService": null,
    "support": null,
    "privacy": null,
    "marketing": null
},
"keyCredentials": [],
"knownClientApplications": [],
"logoUrl": null,
"logoutUrl": null,
"name": "My Bot 2",
"oauth2AllowIdTokenImplicitFlow": false,
"oauth2AllowImplicitFlow": false,
"oauth2Permissions": [],
"oauth2RequirePostResponse": false,
"optionalClaims": null,
"orgRestrictions": [],
"parentalControlSettings": {
    "countriesBlockedForMinors": [],
    "legalAgeGroupRule": "Allow"
},
"passwordCredentials": [],
"preAuthorizedApplications": [],
"publisherDomain": "sentieousa.onmicrosoft.com",
"replyUrlsWithType": [],
"requiredResourceAccess": [],
"samlMetadataUrl": null,
"signInUrl": null,
"signInAudience": "AzureADandPersonalMicrosoftAccount",
"tags": [],
"tokenEncryptionKeyId": null

}

1 Answers
Related