私はカスタム チーム アプリを開発していますが、数日前まで問題なく動作していました。wep アプリは、クロム デバッグを使用してビジュアル スタジオ コードからローカルで実行され、サービス アプリは Azure で配布されていました。
昨日、アプリ スタジオ (ビジュアル スタジオ コード内) から誤ってローカル アプリを削除してから、新しいアプリを作成して古いアプリとして設定しました。
チームはアプリを認識し、ローカルから (Chrome からのデバッグを使用して) 実行すると、Chrome で新しいウィンドウが開き、インストールするためのボタンが正しく表示されます。
[インストール] をクリックすると、ポップアップ エラーが 1 つ表示されます。ローカルのビジュアル スタジオ デバッグ コンソールにこのエラーが表示されます。
私のマニフェスト アプリは、バージョン 1.8 の標準マニフェストです。
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.8/MicrosoftTeams.schema.json",
"manifestVersion": "1.8",
"version": "1.0.0",
"id": "d8bf27a8-a5a3-4381-9dd8-696d473450a1",
"packageName": "com.microsoft.teams.eclexia",
"developer": {
"name": "",
"websiteUrl": "https://localhost:3000",
"privacyUrl": "https://localhost:3000/privacy",
"termsOfUseUrl": "https://localhost:3000/termsofuse"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "",
"full": ""
},
"description": {
"short": "",
"full": ""
},
"accentColor": "#FFFFFF",
"staticTabs": [
{
"entityId": "index",
"name": "Catalogo",
"contentUrl": "https://localhost:3000/tab?tid={tid}&aaId={userObjectId}",
"websiteUrl": "https://localhost:3000/tab",
"scopes": [
"personal"
]
},
{
"entityId": "live",
"name": "Live",
"contentUrl": "https://localhost:3000/live?tid={tid}&aaId={userObjectId}",
"websiteUrl": "https://localhost:3000/live",
"scopes": [
"personal"
]
}
],
"composeExtensions": [
{
"botId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"canUpdateConfiguration": true,
"commands": [
{
"id": "searchQuery",
"type": "query",
"title": "Search",
"description": "Test command to run query",
"initialRun": false,
"fetchTask": false,
"context": [
"compose",
"commandBox"
],
"parameters": [
{
"name": "searchQuery",
"title": "Search Query",
"description": "Your search query",
"inputType": "text"
}
]
}
]
}
],
"permissions": [
"identity",
"messageTeamMembers"
],
"validDomains": [
"localhost"
]
どうすれば解決できますか?