Forum Discussion
Read config data from within Teams app?
- Jul 21, 2020
George71 , Manifest is an app package which can contains teams Tab, Bot , Message Extension and other functionality If you are willing to read tab you can use the Teams Client SDK get Context for your Tab, for Bot you will get the required information in Activity object. updating the manifest with dynamic data is also possible you need to call the Teams client SDK method before any tab loads for bots there is an conversationUpdate event which triggers whenever a Bot is installed.
George71 , Manifest is an app package which can contains teams Tab, Bot , Message Extension and other functionality If you are willing to read tab you can use the Teams Client SDK get Context for your Tab, for Bot you will get the required information in Activity object. updating the manifest with dynamic data is also possible you need to call the Teams client SDK method before any tab loads for bots there is an conversationUpdate event which triggers whenever a Bot is installed.
- George71Jul 24, 2020Brass Contributor
Trinetra-MSFTThanks for the advice. I'll take a closer look at the Teams Client SDK.