mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
11 lines
324 B
JavaScript
Executable File
11 lines
324 B
JavaScript
Executable File
const { TwitterService } = require("m3o/twitter");
|
|
|
|
// Get the current global trending topics
|
|
async function getTheCurrentGlobalTrendingTopics() {
|
|
let twitterService = new TwitterService(process.env.MICRO_API_TOKEN);
|
|
let rsp = await twitterService.trends({});
|
|
console.log(rsp);
|
|
}
|
|
|
|
getTheCurrentGlobalTrendingTopics();
|