Skype bot
Register here: https://dev.botframework.com/
add a file named config.js.my to the same folder of index.js
var config = {
client_id:<client_id>,
client_secret:<client_secret>
}
module.exports = config;
node index.js
or nodejs index.js
start.sh
is the script to start the web server.
access_update.sh
is the script to update the Bot Framework access_token. The access_token json response is saved into ./token.my
.
crontab
is a good way to manage the access token updating job.
run crontab -e
in shell then add this at the last line :
*/59 * * * * sudo /<botroot>/access_update.js