Discord

Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.

Integrate the Discord API with the Inoreader API

Setup the Discord API trigger to run a workflow which integrates with the Inoreader API. Pipedream's integration platform allows you to integrate Discord and Inoreader remarkably fast. Free for developers.

Subscribe To Feed with Inoreader API on New Message (Instant) from Discord API
Discord + Inoreader
 
Try it
Send Message (Advanced) with Discord API on New Article In Folder from Inoreader API
Inoreader + Discord
 
Try it
Send Message (Advanced) with Discord API on New Broadcasted Article from Inoreader API
Inoreader + Discord
 
Try it
Send Message (Advanced) with Discord API on New Starred Article from Inoreader API
Inoreader + Discord
 
Try it
Send Message (Advanced) with Discord API on New Subscription from Inoreader API
Inoreader + Discord
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
New Article In Folder from the Inoreader API

Emit new event when a new article is added to a folder. See the Documentation

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Broadcasted Article from the Inoreader API

Emit new event when a new broadcasted article is added. See the Documentation

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
Subscribe To Feed with the Inoreader API

Subscribe to a feed. See the Documentation

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it

Overview of Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})

Overview of Inoreader

The Inoreader API taps into the functionality of the Inoreader content reader, allowing the automation of tasks like subscribing to new feeds, listing articles, or marking items as read. In Pipedream, this can be leveraged to create custom workflows that integrate with other apps, trigger actions based on new content, or manage content consumption in a more efficient way.

Connect Inoreader

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    inoreader: {
      type: "app",
      app: "inoreader",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.inoreader.com/reader/api/0/user-info`,
      headers: {
        Authorization: `Bearer ${this.inoreader.$auth.oauth_access_token}`,
      },
    })
  },
})