javascript - Updating an activity in BotFramework v4 on Teams platform - Stack Overflow

I have a bot developed using the Bot Framework v4 using NodeJS and deployed on multiple channels in Tea

I have a bot developed using the Bot Framework v4 using NodeJS and deployed on multiple channels in Teams. Is there a way we can update a message sent by the bot? I tried implementing the updateActivity() function in the BotFrameworkAdapter. However, it does not update the activity.

I have this card sent from the bot to a Teams channel. When someone clicks on the button, is there a way I can update the card or the message (disabling the button)?

I have a bot developed using the Bot Framework v4 using NodeJS and deployed on multiple channels in Teams. Is there a way we can update a message sent by the bot? I tried implementing the updateActivity() function in the BotFrameworkAdapter. However, it does not update the activity.

I have this card sent from the bot to a Teams channel. When someone clicks on the button, is there a way I can update the card or the message (disabling the button)?

Share Improve this question edited Jul 31, 2019 at 20:48 Kyle Delaney 12.3k6 gold badges45 silver badges72 bronze badges asked Mar 14, 2019 at 14:38 Pratik MathurPratik Mathur 1173 silver badges11 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 5

The key to this is making sure that when you use updateActivity(), you use the right activity ID that is created by the Teams Channel. You also need to make sure that the updated activity gets all of the Teams data set to it.

In onTurn, capture outgoing activities so that you can easily save all of the necessary Teams Channel data:

public onTurn = async (turnContext: TurnContext) => {

    turnContext.onSendActivities(async (ctx, activities, nextSend) => {
        activities.forEach(async (activity) => {
            if (activity.channelData.saveMe) {
                this.savedActivity = activity;
            }
        });
        return await nextSend();
    });
  • Note: There might be another way to do this. I just found this to be the easiest, since you need to save all of the channelData, conversation info, and activity.id, at a minimum
  • How you store that activity to be used later is up to you. If you store it in the constructor, it will either be re-instantiated on every message (C# SDK) or any user has the ability to change it (JS SDK). You might consider writing custom storage.
  • Activities keep all channelData. By specifying a saveMe flag, we ensure we save the right activity

Instantiate some key variables:

const teamsChannel = '19:[email protected]';
const serviceUrl = 'https://smba.trafficmanager/amer/';
  • Note: the easiest way to get these variables is to send a message from Teams to the bot while putting a breakpoint on the ining activity
  • serviceUrl likely varies by geo region

Send the first activity and store the ID:

// This ensures that your bot can send to Teams
turnContext.activity.conversation.id = teamsChannel;
turnContext.activity.serviceUrl = serviceUrl;
MicrosoftAppCredentials.trustServiceUrl(serviceUrl);

// Add the saveMe flag
yourActivity.channelData = { saveMe: true };

const response = await turnContext.sendActivity(yourActivity);
this.activityToUpdateId = response.id;
  • How you store that ID to be used later is up to you. If you store it in the constructor, it will either be re-instantiated on every message (C# SDK) or any user has the ability to change it (JS SDK). You might consider writing custom storage.

Update your saved activity:

// New data
const card2 = CardFactory.adaptiveCard(adaptiveCard2);

// Set the saved activity.id and new activity data (an adaptiveCard, in this example)
this.savedActivity.id = this.activityToUpdateId;
this.savedActivity.attachments = [card2];

Send the update:

await turnContext.updateActivity(this.savedActivity);
  • Note: you can update the activity with anything. I swapped out entirely different Adaptive Cards

Before:

After:

I've tried this using the middleware but keep getting: "The bot is not part of the conversation roster". Question: My bot is updating a message that a user wrote, so do I need special permissions?

     let ActivityID = context.activity.conversation.id.split("=")[1];

        let updatedActivity: Partial<Activity> = {
            "id":  ActivityID, 
            "channelId": context.activity.channelId,
            "channelData": context.activity.channelData,
            "conversation": 
                            {
                              "name": "",
                              "id": context.activity.conversation.id,
                              "isGroup": context.activity.conversation.isGroup,
                              "conversationType": context.activity.conversation.conversationType,
                              "tenantId": context.activity.conversation.tenantId
                            },
            "type": "message",
            "text": "",
            "summary": "",
            "attachments": [ attachment ]
        }       await context.updateActivity(updatedActivity);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745434456a4627543.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信