0

I am building a Microsoft Teams tab add-in in TypeScript, that uses the LiveShareClient to share presence. It works fine on a few machines I've tried it on, but on one system on another tenant, the code for the LiveShareClient.joinContainer() throws an error:

500, message: 'Internal error encountered while performing the required operation

Is there any way to get more details about this error? The Typescript code in the stage context is this:

const containerSchema = {
    initialObjects: {
        presence: LivePresence,
    },
};

await app.initialize();

const host = LiveShareHost.create();
const client = new LiveShareClient(host);
await client.joinContainer(containerSchema);
Michael S. Scherotter
  • 10,715
  • 3
  • 34
  • 57
  • Could you please confirm, have you chosen to configure their app to be either single-tenant or multi-tenant during app registration in the Azure portal? Other tenant user is Guest Users/Guest Users? – Sayali-MSFT Feb 16 '23 at 10:38

0 Answers0