Questions tagged [microsoft-skype-bot]

The Skype bot API from Microsoft.

The Skype bot API from Microsoft.

35 questions
1
vote
1 answer

Attach .txt, .pdf or zip file with skype bot using botframework rest-api

I was trying to attach .txt and .pdf file to skype bot using rest-api but got this error: { "error": { "code": "BadArgument", "message": "Unknown attachment type" } } Meanwhile I found Rest API attachment error, can anyone confirm if pdf or…
user404
  • 1,934
  • 1
  • 16
  • 32
1
vote
0 answers

Getting value from Message Controller in Calling Controller in Skype Bot

I'm working on a Skype bot using the Microsoft Bot Framework. I have a MessageController and CallingController. I'm trying to somehow link the information obtained from the MessageController with a function within the calling controller. While a…
1
vote
1 answer

Skype: Not able to send file attachment to user

I am not able to send file attachment from a bot to a user in Skype. I am using bot builder version 3.5.0. Below is my code. ConnectorClient connector = new ConnectorClient(new Uri(activity.ServiceUrl)); Activity reply =…
poovarasan
  • 21
  • 2
1
vote
1 answer

How to create an azure chat bot which can send chat messages without any user input

I have tried developing azure bots before. Currently I am trying to find out whether there is any way we could set up a bot that can constantly monitor something and send messages to particular users without user initiating a chat. For instance, a…
1
vote
1 answer

Skype bot card images not showing up

I am sending this post request and all cards like thumbnail, carousel, hero showing up, but the card image is not showing. I tried many different things but nothing worked yet. I am creating a bot in python, everything is working fine accept this…
Puneet
  • 29
  • 1
  • 6
1
vote
1 answer

https webhook not working - skypebot

If i used ngrok webhook then getting call from skype bot to server but if i changed webhook to my actual https://example.com/skbotnode then its not working, even i am not getting any call from skype bot to my server. can any one help me regarding…
0
votes
1 answer

How to make a skypebot kick someone?

So if I say for example 'live:1234567_89' I want the bot to kick a certain member. This is the code by now , it just send a message to group("/kick live:1234567_89"), no kick the member out of the group? how can kick member out of the group by skype…
0
votes
1 answer

Convert byte[] to Video (mp4 or any other palyable format)

I am creating a bot that will record the Microsoft team live sessions. Audio recording is working fine but facing problems in generating the video file. The process I am following is that I am converting the video data into a byte array and then…
0
votes
2 answers

MS Skype bot isn't responding

I use Azure to create my bot. The Telegram, Web and S4B channels works as expected, but the Skype channel doesn't work. I don't get any error. To create the Skype channel I just click the "Add channel" link and add the new contact to my Skype…
0
votes
1 answer

Can you use Botkit and botframework on azure webchat and skype?

I've set up a starterkit on studio.botkit.ai for Microsoft Teams. The bot is hosted on glitch. In Azure bot registration I've included the endpoint provided by glitch. Ive also added my id and password from azure bot registration to my bot. When I…
TrimTrimm
  • 103
  • 1
  • 9
0
votes
1 answer

user receiving same message twice from Skype bot

I was trying to send skype-bot message to skype-user using REST API in nodeJs, but user receives bot-message two times of that single message. I am sending the message with HTTP POST request only single time using a single activityId. Is there any…
user404
  • 1,934
  • 1
  • 16
  • 32
0
votes
2 answers

Passing an external user ID through MS Bot Framework

I am working on a Skype bot, using Microsoft's Bot Framework. I have an external website, where a user can create an account, obtaining a userID. I would like to have a button on my website that allows me to link their account to a Skype…
0
votes
1 answer

Skype Bot sending message (not a reply)

Trying to create a Skype Bot, but I have a problem. Please, help me. I use PHP so I use REST (not NodeJS or C# SDK). The task: I have to send data from html form on my website to Skype (so I don’t have to reply to a message, but just send). Well, I…
0
votes
1 answer

Not able to receive an attachment from Skype in BotFramework

On BotFramework (NodeJS), I was trying to replicate the demo available at https://learn.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-send-receive-attachments . It actually works well. Code in case ms article change: // Create your…
Nordes
  • 2,493
  • 2
  • 21
  • 30
0
votes
1 answer

Displaying buttons on Skype for Business application

I am able to create and access the buttons on Skype (using HeroCard) and its working as per expectations. The same code is expected to be deployed on Skype for Business as well. As per the investigation done (see link -…