with Pikaso and Formatting?
With the Pikaso API you can automate creating screenshots from tweets. See the docs for more information
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
The Pikaso API lets you capture and customize screenshots of tweets with defined styles, sizes, and themes. Harness this power within Pipedream to automate the process of capturing tweet images for reporting, archiving, or sharing across various platforms. Think of it as a bridge between Twitter's textual content and visually-oriented platforms or documents.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pikaso: {
type: "app",
app: "pikaso",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pikaso.me/api/v1/me`,
auth: {
username: `${this.pikaso.$auth.token}`,
password: `${this.pikaso.$auth.token_secret}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})