Skip to content

Instantly share code, notes, and snippets.

@CodeNameNinja
Last active July 18, 2020 12:19
Show Gist options
  • Save CodeNameNinja/d6c21e215d286978df77b75540b10568 to your computer and use it in GitHub Desktop.
Save CodeNameNinja/d6c21e215d286978df77b75540b10568 to your computer and use it in GitHub Desktop.
Twit Configuration For Node Js
const express = require('express');
const Twitter = require('twit');
const app = express();
const client = new Twitter({
consumer_key: '...',
consumer_secret: '...',
access_token: '...',
access_token_secret: '...',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment