I'm trying to send messages , files to slack from my solid works application.
I have created a solidworks Addin in visual Studio c# and I have been Slackbot messages package to do it.
When I run it I get this error:
Error when posting to the webhook url. Error message : one or more
errors occurred.
Status of the result I had got
Related
I have a requirement to transfer conversation from a bot to an agent using Microsoft bot framework. For this purpose I am using the following resource.
https://github.com/cdonke/Botframework-Composer-Handover
I am able to successfully setup the application but User is unable to send message to the agent even after agent has successfully accepted the request from the user. I have also tried to debug the code by attaching it to the process still it is not showing any error but does not route the message from one channel to another channel.
Agent Successfully accepted the request.
User sending Hello to the agent but unable to send the message.
Can anyone help me in this regards if I am missing anything?
I have created a message extension with the custom web form, it fails to send any data back to the bot on microsoftTeams.tasks.submitTask. It just closes the form, and the bot submit action method does not receive any data. No issues with other clients like web, windows, or mac. Any way to debug or look into log files on the mobile?
Event tried with this sample code for message extension and used the compiled TaskModule.zip package, it's also not working in the Teams iOS application.
try sending only one parameter into submitTask.You could do something like this.
microsoftTeams.tasks.submitTask(yourObj);
Is the webhook connections broken in Microsoft Teams or how do we solve the following issue?
When applying the Microsoft Teams Get Started documentation we get the following response in Postman.
"System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."
We have set up a webhook in Teams and use it to post Application Insights messages to a Logic App where one of the actions is the webhook to Teams. Everything went fine until now (7/21 and 7/22, 2019) when we saw in Azure the same exception as a response on status 200. To figure this all out we went back to basic and tried to execute the Get Started documentation. The same exception was thrown.
Code that we used was all from the documentation.
After a day or two the exception wasn't returned anymore after NO modifications to the logic app or payload to the Teams webhook. Everything works fine now.
For future use we added an action to the Logic App to read out the webhook's response to determine futher actions, like sending an e-mail if webhook failed.
I am working on a Q&A bot in Azure and connecting it to Slack. I choose the no-code path with just configuration in Azure and Slack.
I was successful in the following:
Creating the Q&A service in Azure
Importing my FAQ
Creating a BOT in azure and testing it in the 'Test in Web chat 'pane
Creating an app in Slack and sending it text. However I never get a reply from my FAQ text.
So the error are:
In Slack, the response is always 'No good match in FAQ.' Im assuming this is the default text for the Bot.
In Azure, the Channels tab showed the Health of the Slack channel as red with issues. The text reads 'No message text provided' for every call made. This implies Slack is not sending the text to the bot.
Has anyone else seen this error 'No message text provided' when connecting to Slack?
Next things to try are:
Try and download the code and bot emulator and debug the error following these steps
https://learn.microsoft.com/en-us/azure/bot-service/bot-service-troubleshoot-general-problems?view=azure-bot-service-4.0
Any help / thoughts would be appreciated.
Vince
I’m testing with the following setup: I have a bot with privacy mode disabled, so it listens to all messages in a channel. I have a webhook set in the Bot Framework that prints all incoming messages. I noticed the issue first on Telegram web and later discovered that it also affects Android, where you don’t get notifications only if you type a mention manually—if you select a mention from the drop-down, a notification gets sent.
Here are the screenshots of the channel where I was sending messages:
And here are the messages I got from the webhook:
new message: this message sent from web will be relayed even if it contains the mention #jlarky
new message: #JLarkyTestBot you can mention the bot though
new message: ^^ last message from web
new message: Now message from Android
new message: Yarosla mentions work
new message: Yarosla it has to be from mention dropdown, otherwise it's not sent either
As you can see, only a part of them was delivered.