Hello everyone. After I saw the popularity of Juan's Qlik Bot for Telegram written all in C#, I decided to create another one in JavaScript with Node.js and Enigma.js. Today I am going to share with you the code and how to get started creating your own bot for Telegram on any Operating System that has Node.js installed.
The server will be running under https so if you do not have valid certificates for your domain, or localhost if you are testing it on your local computer, you can have Qlik Sense Enterprise take care of that for you. From QMC, go to start->Certificates and then export for localhost using the "Platform Independent PEM-format"
Copy these certificates and paste them into {QlikBotNode folder}/app/server/certs/localhost
Every platform, upon creation of the bot, it gives you some tokens so your code can authenticate with the platform's servers. Once we have these tokens, for security reasons, we need to set them as environment variables. So, lets create our bot and get our token.
Once you install Telegram Desktop, go to your "BotFather" contact and type "/newbot". Everything in Telegram that starts with "/" is a command. So we typed the command to create a new bot. This will give you an options menu to configure your bot.
Go ahead and give your Bot a name, an icon and a description. If you click on "Back to Bot", you will get a button with the "API Token". Take that token and store it as Environment Variable.
In windows you have to go to "Control Panel" -> "System" -> "Advanced System Settings" -> "Environment Variables" and set a new one as "TELEGRAM_BOT_TOKEN", while in Linux, from your directory (~), type "nano .bash_profile" or "vim .bash_profile" and enter a new line with the token "export TELEGRAM_BOT_TOKEN=######".
Now you should be ready to run your code. From the command line (Git Bash), type "gulp". If everything goes well and you do not have any errors, you should see a message "[nodemon] starting `node app/server/server.js`". Your server is up and running and communication via the Token auth has been established.
Now lets explore the Bot.
Type help to view all of the available commands
Click on the Salesforce button or type /salesforce
Here, there are some buttons to get KPIs and one that takes you to the mashup for validation. Try them all!!!!!
Click on the CIO button or type /cio and then click on "Management" to get the set of KPIs
Click on the Helpdesk button or type /helpdesk
That's it! Now you can a have a Node.js server running with your QlikBotNode and you can start experimenting with KPI commands in the Telegram app.
Thank you! I may be adding more updates in the future as well. I am using this extension thoroughly, and want other to be able to use these as well. Cheers.
Thanks a lot for such great blog on integrating telegram with Qliksense. As per your guidance i have installed all modules from npm install. Also i have configured telegram and created environment variables.
But now when i run gulp in GitBash, i am facing an issue/error as attached.
The "error: uncaughtException: 401: Bot Token is required" seems to be a problem on MAC OS, I tried on Windows and Linux and it works fine, however I get the "Error: TypeError: Cannot read property '0' of undefined" as so many people have already mentioned. Is there no other support person who was successful with with this apart from Yianni? I would imagine that this is beneficial for Qlik so any assistance from them would be welcome.
I got a bit further but using a windows/linux. MacOS gives the 401 bot token error. On windows I can run the bot but if I try to click on a button in the chatbot on Telegram I get an error Error: ER_Access denied for user 'sensebot'@'localhost' (using password: yes) model=models/sense-bot/DB: get. This is my certificates folder structure server>certs>demosapi.qlik.com then I added all the certificates here: client_key.pem, client.pem, root.pem, server_key.pem, server.pem.