I’m hosting a slackin app that has a simple file, server.js, with . these contents:
const slackin = require('slackin');
slackin.default({
token: process.env.SLACK_API_TOKEN,
interval: 60000,
org: process.env.SLACK_SUBDOMAIN,
gcaptcha_secret: process.env.GOOGLE_CAPTCHA_SECRET,
gcaptcha_sitekey: process.env.GOOGLE_CAPTCHA_SITEKEY,
path: '/',
silent: false
}).listen(3000)
However I continuously see “Too many requests” errors whenever I open the activity log. Apart from the 60 times/hour it polls Slack, the only other times it could be doing anything is if someone visits the page with the badge or signs up. So I’m trying to figure out how it is reaching 4000 requests. Are there any network logs that would tell me what’s going on?