skype-bots

Skype bot cannot send messages to some group from special day although it works fine before

醉酒当歌 提交于 2020-12-15 03:43:38
问题 We have implement a Skype bot using Bot Builder 4. And this bot run smoothly around 2 years. But from recent days some specify groups cannot receive proactive message from the bot. We have traced both production & development environment to narrow down issue as below: Those group cannot receive message all have format as: ...@p2p.thread.skype. When we create new group and add this bot into group (new group have format: ...@thread.skype). The message send successfully to new group. We have get

Skype bot card images not showing up

倾然丶 夕夏残阳落幕 提交于 2020-01-24 19:40:12
问题 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 issue. These are some links I looked for finding issue. But it seems I am doing everthing correctly. Any help? https://docs.botframework.com/en-us/skype/chat/#navtitle { 'text': 'testinglookssuccessful', 'type': 'message/card.carousel', 'attachments'

Can we build Skype bots for “Skype for Business”?

左心房为你撑大大i 提交于 2020-01-12 14:01:28
问题 I've seen examples of bot programming that work with "Skype". Is it possible to develop enterprise bots that run on "Skype for Business" using Microsoft's Bot/Cognitive service tools/framework? 回答1: Skype for Business is not yet supported by Bot Framework. To find all the messaging channels that are supported visit the Bot Framework's documentation site. 回答2: The Microsoft Bot Framework now officially supports Skype for Business as a channel: Skype for Business Bot Framework (Preview) (As of

Auto complete in Bot Framework

杀马特。学长 韩版系。学妹 提交于 2020-01-03 02:23:06
问题 Is there any way to do autocomplete (from a database or JSON) in the Bot framework emulator? Currently I am using the Bot Framework emulator and I want to know if there is any possible way of using @symbol to populate (autocomplete) data. Finally I want to know if I can do this in Skype. 来源: https://stackoverflow.com/questions/47926061/auto-complete-in-bot-framework

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

走远了吗. 提交于 2019-12-23 01:11:57
问题 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://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-proactive-messages. I have created a simple code which will "register" the user and save their data in my cosmosDatabse on Azure. That works perfectly. //ON "register" SAVE USER DATA AND SAY REGISTERED MESSAGE bot.dialog('adhocDialog', function(session, args) { var savedAddress = session

Find Username of skype from Microsoft Bot Framework Channel

江枫思渺然 提交于 2019-12-18 01:05:32
问题 I have implemented bot application for Skype using Microsoft Bot Framework (version 3.0.0.59). I implemented how to retrieve the Skype Name & Id but I'm not being able to retrieve the username of the Skype account. How can I get username of my Skype account? 回答1: It's not possible. Since the v3 version of the API the user is now represented by a unique user ID per bot . This is to provide an extra layer of privacy to the users (pretty much like Facebook). In the From property of the

Find Username of skype from Microsoft Bot Framework Channel

血红的双手。 提交于 2019-12-18 01:05:19
问题 I have implemented bot application for Skype using Microsoft Bot Framework (version 3.0.0.59). I implemented how to retrieve the Skype Name & Id but I'm not being able to retrieve the username of the Skype account. How can I get username of my Skype account? 回答1: It's not possible. Since the v3 version of the API the user is now represented by a unique user ID per bot . This is to provide an extra layer of privacy to the users (pretty much like Facebook). In the From property of the

Skype channel proactive message request get 500 (Internal Server Error) after some time

青春壹個敷衍的年華 提交于 2019-12-13 03:51:06
问题 I am developing a bot for Skype channel, which can send proactive messages. I followed the example project https://github.com/Microsoft/BotBuilder-Samples/tree/master/samples/csharp_dotnetcore/16.proactive-messages , and this works for my need. I host my bot on a shared hosting service, not Azure. I registered my bot in Azure Channel Registration, tested on skype. Bot responds to me, and when i send request to proactive endpoint, i get proactive message. Everything is fine. Then i realized,

How to communicate the web service to bot framework directly?

倖福魔咒の 提交于 2019-12-11 05:45:57
问题 I was working with bot framework from last week. implemented the node.js SDK for skype chat. Sometimes I need synchronise call between bot and API. Is it possible for service to contact bot directly or is it just one way? Please guide me if any one have suggestion. 回答1: Yes, it's possible. You should look into DirectLine. The Direct Line API is a simple REST API for connecting directly to a single bot. This API is intended for developers writing their own client applications, web chat

Upload image to Skype BOT

喜欢而已 提交于 2019-12-06 05:56:20
问题 I have a bot develop with Microsoft Bot Framework, and in Debug run correctly After the install on Skype, after the upload the image I have a link like this https://df-apis.skype.com/v2/attachments/0-eus-d4-7e19a097c62f5fc21dd53eabfa19d85e/views/original The code is very simply and run without skype if ((activity.Attachments != null) && (activity.Attachments.Count > 0)) { analysisResult = await AnalyzeUrl(activity.Attachments[0].ContentUrl); } ........ How do I find the picture that I sent?