twitter-api-daemz
v1.0.0
Published
tweet api new tweet
Downloads
3
Readme
how to use
const twitterApi = require('twitter-api-daem');
const consumerKey = 'YOUR_CONSUMER_KEY'; const consumerSecret = 'YOUR_CONSUMER_SECRET'; const tweetText = 'Hello, world!';
twitterApi.tweet(consumerKey, consumerSecret, tweetText) .then((response) => { console.log('Tweet sent:', response); }) .catch((error) => { console.error('Failed to send tweet:', error); });
