15 lines
No EOL
795 B
JavaScript
15 lines
No EOL
795 B
JavaScript
const twitter = require("../utils/twitter.js");
|
|
|
|
exports.run = async (message, args) => {
|
|
if (message.author.id !== process.env.OWNER) return `${message.author.mention}, only the bot owner can tweet!`;
|
|
if (args.length === 0) return `${message.author.mention}, you need to provide some text to tweet!`;
|
|
const info = await twitter.client.statuses.update(args.join(" "));
|
|
//if (info.resp.statusCode !== 200) return `Something happened when trying to post this tweet: ${info.resp.statusCode} ${info.resp.statusMessage}`;
|
|
return `https://twitter.com/${process.env.HANDLE}/status/${info.id_str}`;
|
|
// with status code ${info.resp.statusCode} ${info.resp.statusMessage}.
|
|
};
|
|
|
|
exports.category = 8;
|
|
exports.help = "Tweets a message";
|
|
exports.requires = "twitter";
|
|
exports.params = "[message]"; |