Questions tagged [skype-bots]

Questions regarding the Skype Bots SDK (C# or Node.js).

All questions regarding the Skype Bots SDK (C# or Node.js).

108 questions
3
votes
2 answers

How to display images in Skype Bot with Microsoft Bot as Client

I am developing a Bot using Microsoft Bot Framework, In that bot will respond with sending some images to the user. I configured it with slack and skype. In slack Images are displaying but in Skype nothing coming. To send pictures I used the…
narendramacha
  • 550
  • 6
  • 24
3
votes
1 answer

Skype bot not working

Bot Emulator tested ok Bot Framework Chat Box tested ok Skype Integration tested ok Bot added to contact list ok But when I tried to chat with bot, it does not respond anything And when I debugged on server side, no requests made from skype to my…
Kien Chu
  • 4,735
  • 1
  • 17
  • 31
2
votes
1 answer

How do I solve a content type error in the Microsoft Bot Framework?

I'm building a bot with the Microsoft Bot Builder Python SDK. It is hosted on Heroku and exchanging text messages with Skype works well. But I've run into an issue with sending files. The bot generates a JSON file and sends it to the user. I'm using…
2
votes
0 answers

'BadRequest' when send to specify groups - Bot Framework 4

I have an issue with Skype Chatbot. I have integrated chatbot in my system, store group conversationId, serviceUrl, etc... in DB and send to these groups when needed. My system is using .NET Core 2.2 and Bot Framework 4 (version 4.7.0), the system…
2
votes
1 answer

Skype conversation uri doesn`t work in card button

Well, in the beginning I have to describe that kind of case I want implement: I implementing a skype bot that will be create and send conversation link to users as basic card with button. I need to create invitation link into a conversation for…
2
votes
0 answers

Form flow returns hyperlinks for email id in Skype Bot

I have an issue while giving the confirmation message in FormFlow for Skype bot. The issue comes whenever the user gives the "No" for confirmation in the email id column I get email id as: Group Mailbox Email Address (
user64870
  • 47
  • 5
2
votes
1 answer

Microsoft.Bot.Connector.BotState. - Operation returned an invalid status code 'Unauthorized'

I keep getting this exception after my bot is already active for hours. I'm not using any state API, and I've replaced the data store with one from Azure extensions Conversation.UpdateContainer(builder => { var store =…
Medion
  • 81
  • 1
  • 6
2
votes
3 answers

Bot Framework Node.js ad hoc message TO A SPECIFIC USER

I have been staring at this for hours and can't find a solution and that is even though by all suggestions it SHOULD be quite easy - https://learn.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-proactive-messages. I have created a…
Richard Franek
  • 302
  • 3
  • 12
2
votes
2 answers

Hero card button with Action type as Open url doesn't work on all skype clients

I have a very standard code picked up from the GitHub examples like this: HeroCard postAnalysisCard = new HeroCard() { Buttons = new List { new CardAction(ActionTypes.PostBack, "Show me previous polls", value:…
Vish
  • 31
  • 4
2
votes
0 answers

Skype Bot unable to join group chats (was able to before)

I have a skype bot which was working fine and was able to join and interact in Group Calls Now (July 27th) it seems to have stopped working If I try to add the bot to a Group Call I get the initial callback. But my Answer Action does not seem to get…
Rishi Diwan
  • 338
  • 1
  • 10
2
votes
1 answer

Skype integration error with Node -[TypeError: Cannot read property 'logger' of undefined]

I'm using the skype client for bot application. As soon as the server received the first message, an (internal) error was found on the server log. Example code var restify = require('restify'); var builder = require('botbuilder'); var calling =…
Mukesh S
  • 367
  • 5
  • 19
2
votes
3 answers

Skype bot can not be added to group chat

I'm developing a bot for Skype and enabled setting that allows to add this bot to Group Chats. However, when I click to "Add People" button, I can see only the real people, but Skype Bots are hidden there (even the official ones). There is an…
2
votes
1 answer

Skype chat bot framework - node.js

I'm new to the bot framework and working on the skype chat bot by using node SDK. I have JSON tree array which provide me the id and names for tree data. treeName = tree.parse({ "id": 1, "title": "menu", "children": [ { …
Mukesh S
  • 367
  • 5
  • 19
2
votes
0 answers

Skype-bot, message to all contacts

What method Skype bot can get a list of his contacts? And is there a way to send a message to all the contacts of a single POST-request? The documentation I describe these methods have not found…
Samail
  • 31
  • 2
2
votes
1 answer

File attachment works in Microsoft Bot Emulator but not in Skype

I want to send an attachment (.txt) to Skype client using Microsoft Bot Framework V3 with Bot Builder Nuget package (3.2.0) This is how I created the attachment: var replayFile = new Microsoft.Bot.Connector.Attachment(); replayFile.Name =…
Miaosen Wang
  • 420
  • 3
  • 16