Re: How to create kik apk messenger like application using Node.js and Connector
Creating a basic Kik bot is simple:
Import @kikinteractive/kik
Create a bot with the username and API key you got from
https://dev.kik.com/
Configure your bot as described in the documentation
Add the bot as middleware to your server with bot.incoming()
Start your web server
You can use any node-style web server to host your Kik bot. Add handlers to your bot by calling bot.onTextMessage(...) and get notified whenever a user messages you. Take action on the messages as they come in and call message.reply(...) to respond to the message within the chat the message was sent from.
Check out the full API documentation for more advanced uses.
Subject
Written By
Posted
September 07, 2017 11:50AM
Re: How to create kik apk messenger like application using Node.js and Connector
November 09, 2017 06:02AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.