Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
crufter
2021-09-16 11:56:07 +00:00
parent d4d9c1c176
commit 83ae3b6f39
12 changed files with 313 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
import * as twitter from "m3o/twitter";
// Get the timeline for a given user
async function GetAtwitterTimeline() {
let twitterService = new twitter.TwitterService(process.env.MICRO_API_TOKEN);
let rsp = await twitterService.timeline({
limit: 1,
username: "m3oservices",
});
console.log(rsp);
}
await GetAtwitterTimeline();