윤정민 e42b3d7c43
All checks were successful
Build and Deploy Teams Planner Bot / build-and-run (push) Successful in 30s
fix: route Teams sign-in invokes to OAuth dialog + use UserTokenClient for sign-out
2026-05-15 17:33:39 +09:00

49 lines
1.5 KiB
JSON

{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json",
"manifestVersion": "1.16",
"version": "1.0.0",
"id": "1d0c2212-0bae-46af-babd-6c5223d2ee4c",
"packageName": "com.example.teamsplannerbot",
"developer": {
"name": "Internal",
"websiteUrl": "https://example.com",
"privacyUrl": "https://example.com/privacy",
"termsOfUseUrl": "https://example.com/terms"
},
"icons": {
"color": "color.png",
"outline": "outline.png"
},
"name": {
"short": "Planner Bot",
"full": "Teams Planner Bot"
},
"description": {
"short": "자연어로 Planner 작업을 만들고 업데이트합니다.",
"full": "사용자가 평범한 말로 작업 진행 상황을 알려주면 적절한 Plan/Bucket에 작업을 생성하거나 업데이트하는 봇입니다."
},
"accentColor": "#4F6BED",
"bots": [
{
"botId": "1d0c2212-0bae-46af-babd-6c5223d2ee4c",
"scopes": ["personal", "team", "groupchat"],
"supportsFiles": false,
"isNotificationOnly": false,
"commandLists": [
{
"scopes": ["personal", "team", "groupchat"],
"commands": [
{ "title": "logout", "description": "Microsoft 계정 로그아웃" }
]
}
]
}
],
"permissions": ["identity", "messageTeamMembers"],
"validDomains": ["token.botframework.com"],
"webApplicationInfo": {
"id": "1d0c2212-0bae-46af-babd-6c5223d2ee4c",
"resource": "https://graph.microsoft.com/"
}
}