Bluesky is an open network. With one account, you can access both an easy-to-use social network and a shared identity across the entire social internet.
Emit new event when someone follows the specified account. Requires the account ID as a prop to monitor followers for that account. See the documentation.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when an author creates a post. Requires the author id as a prop to track posts from a specific author. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bluesky: {
type: "app",
app: "bluesky",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://bsky.social/xrpc/app.bsky.actor.getProfile?actor=${this.bluesky.$auth.did}`,
headers: {
Authorization: `Bearer ${this.bluesky.$auth.oauth_access_token}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.