I am new to the Bot framework, I am trying to integrate WebEx Bot with my .NET core application. can anyone give sample code for integrating the WebEx Bot. Suggest any forum to check
I created sample Bot which is on the Bot framework template and I have modified some changes and works as expected. Now i want to integrate webex bot. Could anyone help me on this
There is a BotBuilder-Community dotnet sample, called Webex Adapter Sample, you can reference that demonstrates integrating the two together. The sample is based off of the BotBuilder-Community dotnet library located here.
Related
Based on some examples I found on Twilio, I installed and setup the #twilio/flex-webchat-ui example on Git. It works fine and I can develop the workflow using Studio.
Then I was told by Twilio Support that running an unattended ChatBot using Flex was a violation of usage policy. So Flex needs to be removed from the workflow.
The flex-webchat-ui example is Javascript and uses the following:
<FlexWebChat.ContextProvider manager={manager}>
<FlexWebChat.RootContainer />
</FlexWebChat.ContextProvider>
Now I've eliminated Flex and created a new workflow in Studio.
I found the following article on embedding a chat app in a website, but this doesn't appear to support the Studio workflow I've created.
https://www.twilio.com/blog/2017/06/complete-chat-application-javascript.html
Does anyone know where the documentation/sample code is to embed a Studio Workflow (SMS ChatBot) into an ASP.NET MVC C# web app?
Visual Studio 2019 template for Service Fabric has a drop down to select the dotnet framework. Mine only shows dotnet frameworks and not core. I am able to create other .net core application but not service fabric. Any ideas on what to look for? I have already validated the SDKs are on the computer.
OK, I think I understand what is happening. The first thing the template creates is the project. Since my development machine's OS is Windows, it requires me to use .Net framework. Once inside the project I am able to create individual .Net Core Applications. I haven't been able to find documentation that explains this. I was initially following this tutorial which seemed a little out of date or for some other reason was missing the step for setting up the projects framework version. I don't know how the projects framework is used in either case.
I'm very new to Twilio Studio. I'm converting an IVR from OpenVBX to Studio and have been trying to find examples of flows (can you even share flows?) or widgets other than the (very sparse) examples included in the on-line documentation. In OpenVBX, many plug-ins were shared by users, but I can't find anything similar. Does this exist?
It does not, however you can extend Studio Functionality using the Run Function Widget, which allows you to write custom code using Node.
There are many blog post and You Tube videos and tutorials using Studio that should get you started. You can also export the JSON of your Studio flow, if you want to share it with others. Studio provides starter templates as well, when you create a new flow, which are helpful with the initial layout structure.
Twilio Studio Tutorials
Twilio Studio You Tube Play List
Twilio Studio Widget Library
I am searching for a solution to build and publish the AWS Lex bot via .NET SDK or via any other API.
Any help will be appreciated.
I just recently developed a working Amazon Lex Chatbot using .NET SDK and one of the tools that helped a lot was the GitHub Repo that AWS maintains for C#. Do note that they use .NET core and not .NET framework.
Alternatively, if you want to use the REST API (which is what I did), you can go to the .NET documentation guide that Amazon also maintains. These REST API can be accessed via the Nuget package that you can get inside Visual Studio itself.
I am exploring different options for creating my first mobile app. I am from a web development background using Rails and Postgres.
I am unsure of how something like the Ionic framework works. I've looked around on the web but I weren't able to find answers to my specific question. Is my understanding correct that I will be able to create a full Rails/Postgres backend with various API's and then talk to the backend from my Hybrid mobile app (Ionic framework)?
Can anybody point me to a tutorial that might have worked for them please?
We've just released a tutorial on how to integrate a Rails backend with Ionic, based on our experience building many real world production apps.
You can find it here:
http://www.dovetaildigital.io/blog/2015/8/21/rails-and-ionic-make-love-part-one
This is the first of a three part series in which we move from basic integration to full user authentication and integration testing. Hopefully this is of some help to you!
So if you have any epxerience in web design ionic is a very easy. You build a webpage just like you would for hosting on a server. All ionic does, along with angular js, is extend html's vocabulary using something called directives. I would use the intel xdk. It has brackets as a built in text editor, a built in phone emulator, and a build server for mobile apps all tied into one. You can also start with an ionic template. what you end up with is some html, javascript (mostly angular js), and some css. Then that code is built into a mobile app for whatever platform you choose through the cordova build process. You can grab the intel xdk here https://software.intel.com/en-us/html5/tools, ionic docs are here http://ionicframework.com/docs/, and an ionic tutorial here http://ionicframework.com/getting-started/. Best of luck to you!