Posts

Support Local web Servers to go Live and HTTPS

Image
Ngrok- Helps Exposing Local web Servers to Public To make our local development go live or HTTPS, we need to install NGROK. NGROK helps exposing our local development to internet. Download NGROK by going to the link:  Click Here . Once downloaded install the NGROK. Go to cmd C:\folder_location\ngrok-stable-windows-amd64 and execute below command:                   ngrok http -host-header=rewrite 123.132.156.219:80   //(Change the IP as of your system and Port 80 to Your Server Port. By default 80 is the Server port) On execution of the above command, Localhost goes live and points to URLS mentioned in the image below. The publically accessible URL will be live for 7 hours only.  In order to make it live after 7 hours, need to rerun the above command.   There are other alternate ways to do so. One of them is Serveo .  Serveo is an SSH server just for remote port forwarding....

Chat Bots are giant step in transforming CMS to next generation of Digital experiences and engagement - Part 2

Image
Let's Continue where we left off in our previous post . We will start configuring DialogFlow for processing our Intents, Entities and webhook. 3. Configuring and Working with DialogFlow Steps to Create a New Dialogflow Agent: A Gmail account to access Dialogflow To Create app at go to  https://console.dialogflow.com/api-client/#/login Click on Sign in With Google and It will ask : "DialogFlow wants to access your Google Account" . Click Allow and Accept T&C Click CREATE AGENT in Left Most Panel of Dialogflow Give Some Agent Name, like, "ChatBot" and it will create an agent Create Entities by Clicking Entity:                  1. Click on Entities in Left Most Panel and Create New entity: "Articles" . Check "Define Synonyms" and add synonyms for each entry:      Articles  Articles,Publishes                       ...

Chat Bots are giant step in transforming CMS to next generation of Digital experiences and engagement - Part 1

Image
Artificial Intelligence has grown by leaps and bounds and showcased its efficacy to the world and leaving behind solid footprints in almost all walks of life. Its domain of service is expanding from Online Business platforms to Education, Health, Agriculture, e-Governance and as many as can be listed here would be less. One of the fast growing service that it can provide is in promising Digital engagement. Live Assistants or Chat Bots are proving to be a next technological advancement in providing a better and unprecedented digital experience and strong customer relations. In this blog we will be building a Chat Bot on top of Drupal as Content Management System(CMS) and using Google Assistant Development Framework(DialogFlow) as Natural Language Processing(NLP) platform. Our Agenda here are: 1. Snapshot of the Complete Process 2. Ngrok - Supporting Local Web Server as HTTPS 3. Configuring and Working with Dialogflow 4. Basic Module in Drupal 8 to Communicate with Dialogfl...