Last active
July 18, 2020 12:19
-
-
Save CodeNameNinja/d6c21e215d286978df77b75540b10568 to your computer and use it in GitHub Desktop.
Twit Configuration For Node Js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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