twitter-follow-sync
v1.0.0
Published
A package to sync followers from one Twitter account to another
Downloads
7
Readme
Twitter Follow Sync
A Node.js package to make one Twitter account follow the accounts followed by another Twitter account.
Installation
npm install twitter-follow-sync
Usage
const { syncFollowers } = require("twitter-follow-sync");
syncFollowers({
consumerKey: "your_consumer_key",
consumerSecret: "your_consumer_secret",
accessTokenA: "access_token_for_accountA",
accessSecretA: "access_secret_for_accountA",
accountA: "accountA_username",
accessTokenB: "access_token_for_accountB",
accessSecretB: "access_secret_for_accountB",
});