Dialogflow integration with Skype/teams - dialogflow-es

I have integrated Dialogflow with Microsoft Teams as per the instructions here. It works fine. I want to add calendar integration as well. When I try to do this with separate cloud function/cloud run, it works fine in the Dialogflow console but when I test in teams, it creates a calendar event but there is no response from webhook to teams (I get the webhook response only in Dialogflow console). This is probably because the teams doesn't recognize a normal message, it has to be converted to a skype message. This is the response back from webhook:
conv.ask('Ok, let me see if we can fit you in.');
How do I convert this particular message to skype message using node js?

Related

Is there a webhook for Whatsapp Business API for new order creation?

So, I need to create a webhook that would notify when anyone places an order on my whatsapp business number.
Now, in the meta app developer settings, I could not find any webhook for order placed notification. I did try message webhook and it's working but I don't know how I setup the webhook for place order.
Here is the screenshot of the available webhooks:
Here is my glitch server link:
https://glitch.com/edit/?fbclid=IwAR0HWgQsDgHhTj_PZ8HwQk5Yi9qjaZildFovVo5Q-WbY-Kru4wyBchasNkU#!/nostalgic-hail-toad?path=app.js%3A64%3A24

How to integrate Dialogflow with Slack using OAuth2

I'm trying to get Slack to prompt the user to sign in with their Google account (account link) before they can use my Dialogflow chatbot in Slack. The reason being, is that I need access to their calendar in order to create and modify the events, among other things.
Simply following the Slack integration instructions on the 'Integrations' page in the Dialogflow console didn't work. It immediately installed the app.

ConversationUpdate not firing from Teams bot user added event NodeJs SDK v4

I've been trying to implement the preview version of Microsoft's BotFramework for NodeJS SDK v4 on Teams as mentioned here. I've set up the messaging endpoint in the Azure portal and I'm able to receive the message events just fine.
I've tried out other bots in the Teams Store such as Hipmunk and they seem to be able to proactively message the users as soon as they get added on to the work space.
I've been through the documentation already and I know that I would need to work upon a ConversationUpdate event that fires in the event of a bot user being added to a team, but unfortunately I haven't received any such events. I've wired it up to be able to receive it because the handlers do work when I test the bot in web chat on the Azure portal. Is this some sort of bug in the Teams client itself or is there any alternative documentation that I've been missing. Please let me know if any code samples or further links are required to aid you in helping me as this is a pretty critical integration for me and my company.

azure chat bot[SDK4] messages status shows 'can't send, retry', while on live(human) agent chat on Direct line channel

I am facing issue with azure chat-bot framework SDK4 integration with live agent(human) chat through REST API using Node.js.
I have an REST API, which needs to execute in the certain interval
for getting information about human agent chat and status, and i need
to send to user as an chat message.
One more REST API, which will send chat message again again to live agent from user.
I am trying to implement this in azure chat-bot SDK V4 waterfall method getting messages status shows 'can't send, retry', even though it received from live agent side.
Code already in stack overflow:
azure chatbot SDK4 - live(human) agent chat REST API integration not working issue
Here you go --> echo bot this sample will explain listen for the incoming requests to bot.

Chatbase integration with Dialogflow chatbot which is integrated in an app through a third party API

I have a Dialogflow agent which is integrated in an app and a web version. I want to integrate this chatbot with Chatbase to get analysis metrics of the bot. However, as of chatbase documentation we cannot integrate Dialogflow hosted bots with Chatbase but if I have a server in the middle of my app and chatbot which is saving all the data, can I integrate chatbase with it?
The typical way to integrate Chatbase is to have it called as part of fulfillment. This requires you to set each Intent to use fulfillment, but you can still set the reply as part of the Intent, if you wish. In your webhook, you would call Chatbase to record the event, but not return any response in the webhook, and Dialogflow will use the Response set in the UI.
Chatbase reports are built upon user messages and intents, however there is value in sending us the bot messages to provide context to the Transcripts feature. You can create a server to server integration to send us the JSON payloads in real time, or in batches of up to 100.

Resources