Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

377
Views
Cómo resolver el error: falta la variable de entorno 'TWITTER_CONSUMER_KEY'

Soy un principiante en la programación, así que al menos espere encontrar algún error más adelante. Este día, codifiqué una aplicación de Node.js para publicar fuentes de Twitter en Discord, pero no lo hizo.

No puedo entender por qué veo este error, aunque ya proporcioné el archivo .env con los datos necesarios. Ya ejecute las dependencias necesarias como, npm install gm , npm i dotenv . El código está debajo.

 'use strict'; const fs = require('fs'); const commandExistsSync = require('command-exists').sync; const logger = require('./bin/logger'); const { version } = require('./package.json'); logger.info(`Starting the twitter-to-discord application v${version}`); // Extract all the env variables we will be using const { TWITTER_CONSUMER_KEYS, TWITTER_CONSUMER_SECRET, TWITTER_ACCESS_TOKEN_KEY, TWITTER_ACCESS_TOKEN_SECRET, MONGO_URI, DISCORD_BOT_TOKEN, DISCORD_CMD_PREFIX, DISCORD_BOT_OWNER_ID, TEMP, } = process.env; // Exit if the env variable was not set or passed. None can be empty function envTest(value, name) { logger.debug(`${name}=${value}`); if (!value) { logger.error(`Missing the environment variable '${name}'`); process.exit(1); } } envTest(TWITTER_CONSUMER_KEYS, 'TWITTER_CONSUMER_KEYS'); envTest(TWITTER_CONSUMER_SECRET, 'TWITTER_CONSUMER_SECRET'); envTest(TWITTER_ACCESS_TOKEN_KEY, 'TWITTER_ACCESS_TOKEN_KEY'); envTest(TWITTER_ACCESS_TOKEN_SECRET, 'TWITTER_ACCESS_TOKEN_SECRET'); envTest(MONGO_URI, 'MONGO_URI'); envTest(DISCORD_BOT_TOKEN, 'DISCORD_BOT_TOKEN'); envTest(DISCORD_CMD_PREFIX, 'DISCORD_CMD_PREFIX'); envTest(DISCORD_BOT_OWNER_ID, 'DISCORD_BOT_OWNER_ID'); envTest(TEMP, 'TEMP'); // Ensure we can access the temp directory try { fs.accessSync(process.env.TEMP, fs.constants.F_OK); } catch (err) { logger.error(`Unable to access the temp directory: ${process.env.TEMP}`); logger.debug(err); process.exit(1); } // Ensure all the commands we need to function exist via PATH if (!commandExistsSync('ffmpeg')) { logger.error('\'ffmpeg\' is not available on the command line'); process.exit(1); } if (!commandExistsSync('gm')) { logger.error('\'gm\' is not available on the command line'); process.exit(1); } // Passed all the startup tests // Continue to load application require('./bin');

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Aunque haya instalado dotenv, no lo ejecutó. Debería tener require('dotenv').config() al comienzo de su programa.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!