Volume069
Volume069

Reputation: 61

Ms Teams Bot Icon is not displayed

I've used app studio from MS Teams to creat a manifest for a Bot App. I've uploaded the full color picture as well as trasparent outlone. However the icon is not displaying at the chat window. Only the default icon is visivle.

Any ideas, how can I solve the issue? Thanks a lot!

Upvotes: 4

Views: 3599

Answers (2)

Bernhard Laven
Bernhard Laven

Reputation: 151

As @Adrian Solis answer is indeed correct, I just wanted to add that it can also be related to caching issues. If you are changing icons and want to check if everything is working as expected, you can delete your browsers cache or the cache of the Microsoft Teams Windows App.

The Microsoft Teams Windows App has the following cache folders. Just stop the app, delete everything in this folders and start it again.

  • %appdata%\Microsoft\teams\application cache\cache\
  • %appdata%\Microsoft\teams\blob_storage\
  • %appdata%\Microsoft\teams\Cache\
  • %appdata%\Microsoft\teams\databases\
  • %appdata%\Microsoft\teams\GPUcache\
  • %appdata%\Microsoft\teams\IndexedDB\
  • %appdata%\Microsoft\teams\Local Storage\
  • %appdata%\Microsoft\teams\tmp\

Upvotes: 1

Adrian Solis
Adrian Solis

Reputation: 941

Is your bot sideloaded or uploaded to your organization's private app store? In those cases, the image used for the bot in the chat window is taken from the bot registration in Bot Framework. (This is a known issue that we're tracking.)

To change your bot's icon:

  • If you registered your bot using App Studio:
    1. Go to https://dev.botframework.com/bots and sign in with the same account you use in Teams
    2. Select your bot, then go to Settings
    3. Click on "Upload custom icon"
  • If you registered your app using the Azure portal:
    1. Go to the Bot Service or Bot Channels Registration resource in Azure
    2. Go to Settings
    3. Upload a custom icon

Upvotes: 5

Related Questions