Forum Discussion
In-dialog box not showing on IOS devices
- Oct 07, 2021
Hi Prasad_Das-MSFT,
We fixed the issue.
const replyActivity = MessageFactory.text('Hi'); // this could be an adaptive card instead replyActivity.channelData = { notification: { alertInMeeting: true, externalResourceUrl: 'https://teams.microsoft.com/l/bubble/APP_ID?url=<url>&height=<height>&width=<width>&title=<title>&completionBotId=BOT_APP_ID’ } }; await context.sendActivity(replyActivity);We were replacing the title (line 5) in the externalResourceUrl by the name of the class that was corresponding to the meeting. And the name had spaces in it so it wasn't showing the bubble on IOS devices but in others it was.
Thanks for your help again and hope it will help if anybody get the same issue like us.
Could you please share the sample which you were referring to, so that we can try it from our end?
Hi Prasad_Das-MSFT,
We fixed the issue.
const replyActivity = MessageFactory.text('Hi'); // this could be an adaptive card instead
replyActivity.channelData = {
notification: {
alertInMeeting: true,
externalResourceUrl: 'https://teams.microsoft.com/l/bubble/APP_ID?url=<url>&height=<height>&width=<width>&title=<title>&completionBotId=BOT_APP_ID’
}
};
await context.sendActivity(replyActivity);We were replacing the title (line 5) in the externalResourceUrl by the name of the class that was corresponding to the meeting. And the name had spaces in it so it wasn't showing the bubble on IOS devices but in others it was.
Thanks for your help again and hope it will help if anybody get the same issue like us.