From 4ce89b970d6cf49c8ae99efd022fc885a23d76e4 Mon Sep 17 00:00:00 2001 From: Kevin Leung Date: Wed, 12 Jan 2022 12:25:29 -0500 Subject: [PATCH 1/3] Updating manifest to include valid domains --- .../teamsAppManifest/manifest.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json b/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json index e1cd871ba2..cf84dfe677 100644 --- a/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json +++ b/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json @@ -120,5 +120,8 @@ ], "permissions": [ "identity" + ], + "validDomains": [ + "<>" ] -} \ No newline at end of file +} From 26272e0364047bd5bc2a941f8e35155939922858 Mon Sep 17 00:00:00 2001 From: Kevin Leung Date: Wed, 12 Jan 2022 12:29:13 -0500 Subject: [PATCH 2/3] Updating validDomain to include ngrok for sample --- .../teamsAppManifest/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json b/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json index cf84dfe677..b2a7f0467c 100644 --- a/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json +++ b/samples/javascript_nodejs/51.teams-messaging-extensions-action/teamsAppManifest/manifest.json @@ -122,6 +122,6 @@ "identity" ], "validDomains": [ - "<>" + "*.ngrok.io" ] } From cd8d07332ac52a56536d00112844d631e1a24946 Mon Sep 17 00:00:00 2001 From: Kevin Leung Date: Wed, 12 Jan 2022 12:30:02 -0500 Subject: [PATCH 3/3] Updating validDomain to include ngrok for sample --- .../teams_app_manifest/manifest.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/python/51.teams-messaging-extensions-action/teams_app_manifest/manifest.json b/samples/python/51.teams-messaging-extensions-action/teams_app_manifest/manifest.json index bf26138930..d89554b13f 100644 --- a/samples/python/51.teams-messaging-extensions-action/teams_app_manifest/manifest.json +++ b/samples/python/51.teams-messaging-extensions-action/teams_app_manifest/manifest.json @@ -74,5 +74,8 @@ ], "permissions": [ "identity" + ], + "validDomains": [ + "*.ngrok.io" ] -} \ No newline at end of file +}