← Spotify + Discord Bot integrations

Create Channel Invite with Discord Bot API on New Track in Playlist from Spotify API

Pipedream makes it easy to connect APIs for Discord Bot, Spotify and 1000+ other apps remarkably fast.

Trigger workflow on
New Track in Playlist from the Spotify API
Next, do this
Create Channel Invite with the Discord Bot API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Spotify trigger and Discord Bot action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Track in Playlist trigger
    1. Connect your Spotify account
    2. Configure Polling interval
    3. Select one or more Playlist IDs
  3. Configure the Create Channel Invite action
    1. Connect your Discord Bot account
    2. Select a Guild
    3. Select a Channel
    4. Optional- Configure Max age
    5. Optional- Configure Max number of uses
    6. Optional- Configure Temporary membership
    7. Optional- Configure Unique
    8. Optional- Select a Target type
    9. Optional- Configure Target user Id
    10. Optional- Configure Target application id
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event for each new Spotify track added to a playlist
Version:0.1.0
Key:spotify-new-track-in-playlist

Spotify Overview

Assuming you have a Spotify Developer account (https://developer.spotify.com/), you can use the Spotify API to build the following:

  • An app that displays a user's top artists, tracks, and genres
  • A playlist generator that creates a playlist based on a user's favorite artists
  • An app that shows a user's friends who also listen to a particular artist
  • A concert finder that shows a user upcoming concerts for their favorite artists

Trigger Code

import spotify from "../../spotify.app.mjs";
import common from "../common.mjs";

export default {
  dedupe: "unique",
  type: "source",
  key: "spotify-new-track-in-playlist",
  name: "New Track in Playlist",
  description: "Emit new event for each new Spotify track added to a playlist",
  version: "0.1.0",
  props: {
    ...common.props,
    db: "$.service.db",
    playlistIds: {
      type: "string[]",
      label: "Playlist IDs",
      withLabel: false,
      propDefinition: [
        spotify,
        "playlistId",
      ],
    },
  },
  methods: {
    ...common.methods,
    getMeta({
      track,
      added_at: ts,
      playlistId,
    }) {
      const {
        id,
        name: summary,
      } = track;
      return {
        id: id + playlistId,
        summary,
        ts,
      };
    },
    isItemRelevant(item, lastEvent) {
      const addedAt = new Date(item.added_at);
      return (addedAt.getTime() > lastEvent.getTime());
    },
  },
  async run() {
    const lastEvent = this.db.get("lastEvent")
      ? new Date(this.db.get("lastEvent"))
      : this.daysAgo(30);

    this.db.set("lastEvent", lastEvent);
    for (const playlistId of this.playlistIds) {
      const params = {
        playlistId,
      };

      const playlistItems = await this.spotify._paginate(
        this.spotify.getPlaylistItems.bind(this),
        params,
      );

      for (const item of playlistItems) {
        if (this.isItemRelevant(item, lastEvent)) {
          this.$emit(item, this.getMeta({
            ...item,
            playlistId,
          }));
        }
      }
    }
    this.db.set("lastEvent", new Date());
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
SpotifyspotifyappThis component uses the Spotify app.
Polling intervaltimer$.interface.timer

How often to poll the Spotify API for new events

N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Playlist IDsplaylistIdsstring[]Select a value from the drop down menu.

Trigger Authentication

Spotify uses OAuth authentication. When you connect your Spotify account, Pipedream will open a popup window where you can sign into Spotify and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Spotify API.

Pipedream requests the following authorization scopes when you connect your account:

playlist-read-collaborativeplaylist-modify-privateplaylist-modify-publicplaylist-read-privateuser-modify-playback-stateuser-read-currently-playinguser-read-playback-stateuser-read-privateuser-read-emailuser-library-modifyuser-library-readuser-follow-modifyuser-follow-readuser-read-recently-playeduser-top-readstreamingapp-remote-controlugc-image-uploaduser-read-playback-position

About Spotify

Music streaming

Action

Description:Create a new invite for the channel. [See the docs here](https://discord.com/developers/docs/resources/channel#create-channel-invite)
Version:0.0.7
Key:discord_bot-create-channel-invite

Discord Bot Overview

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Action Code

import constants from "../../constants.mjs";
import common from "../common.mjs";

export default {
  ...common,
  key: "discord_bot-create-channel-invite",
  name: "Create Channel Invite",
  description: "Create a new invite for the channel. [See the docs here](https://discord.com/developers/docs/resources/channel#create-channel-invite)",
  type: "action",
  version: "0.0.7",
  props: {
    ...common.props,
    maxAge: {
      type: "integer",
      label: "Max age",
      description: "Duration of invite in seconds before expiry 0 for never. between 0 and 604800 (7 days).",
      optional: true,
    },
    maxUses: {
      type: "integer",
      label: "Max number of uses",
      description: "0 for unlimited. between 0 and 100.",
      optional: true,
    },
    temporary: {
      type: "boolean",
      label: "Temporary membership",
      description: "Whether this invite only grants temporary membership",
      optional: true,
    },
    unique: {
      type: "boolean",
      label: "Unique",
      description: "If true, don't try to reuse a similar invite (useful for creating many unique one time use invites)",
      optional: true,
    },
    targetType: {
      type: "integer",
      label: "Target type",
      description: "The type of target for this voice channel invite. [See the docs here](https://discord.com/developers/docs/resources/invite#invite-object-invite-target-types)",
      optional: true,
      options: [
        {
          label: "Stream",
          value: constants.INVITE_TARGET_TYPES.STREAM,
        },
        {
          label: "Embedded Application",
          value: constants.INVITE_TARGET_TYPES.EMBEDDED_APPLICATION,
        },
      ],
    },
    targetUserId: {
      type: "string",
      label: "Target user Id",
      description: "The id of the user whose stream to display for this invite, required if Target type is Stream, the user must be streaming in the channel.",
      optional: true,
    },
    targetApplicationId: {
      type: "string",
      label: "Target application id",
      description: "The id of the embedded application to open for this invite, required if Target type is Embedded Application, the application must have the EMBEDDED flag.",
      optional: true,
    },
  },
  async run ({ $ }) {
    const {
      channelId,
      maxAge,
      maxUses,
      temporary,
      unique,
      targetType,
      targetUserId,
      targetApplicationId,
    } = this;

    const data = {
      max_age: maxAge,
      max_uses: maxUses,
      temporary,
      unique,
      target_type: targetType,
      target_user_id: targetUserId,
      target_application_id: targetApplicationId,
    };

    return this.discord.createChannelInvite({
      $,
      channelId,
      data,
    });
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Discord BotdiscordappThis component uses the Discord Bot app.
GuildguildIdstringSelect a value from the drop down menu.
ChannelchannelIdstringSelect a value from the drop down menu.
Max agemaxAgeinteger

Duration of invite in seconds before expiry 0 for never. between 0 and 604800 (7 days).

Max number of usesmaxUsesinteger

0 for unlimited. between 0 and 100.

Temporary membershiptemporaryboolean

Whether this invite only grants temporary membership

Uniqueuniqueboolean

If true, don't try to reuse a similar invite (useful for creating many unique one time use invites)

Target typetargetTypeintegerSelect a value from the drop down menu:{ "label": "Stream", "value": 1 }{ "label": "Embedded Application", "value": 2 }
Target user IdtargetUserIdstring

The id of the user whose stream to display for this invite, required if Target type is Stream, the user must be streaming in the channel.

Target application idtargetApplicationIdstring

The id of the embedded application to open for this invite, required if Target type is Embedded Application, the application must have the EMBEDDED flag.

Action Authentication

Discord Bot uses API keys for authentication. When you connect your Discord Bot account, Pipedream securely stores the keys so you can easily authenticate to Discord Bot APIs in both code and no-code steps.

This app allows you to use the Discord API using your own Discord bot. If you don't want to use a custom bot, and you just need to use the Discord API, exit this screen and use the Discord app, instead.


If you want to use your own Discord bot, but haven't created one yet, see these instructions or watch this video. You'll need to add this bot to your server(s) to make successful API requests.

Once you've created your bot, you'll find the Bot token within the Bot section of your app. Enter that token below.

About Discord Bot

Use this app to interact with the Discord API using a bot in your account

More Ways to Connect Discord Bot + Spotify

Add Role with Discord Bot API on New Playlist from Spotify API
Spotify + Discord Bot
 
Try it
Add Role with Discord Bot API on New Saved Track from Spotify API
Spotify + Discord Bot
 
Try it
Add Role with Discord Bot API on New Track in Playlist from Spotify API
Spotify + Discord Bot
 
Try it
Create Channel Invite with Discord Bot API on New Playlist from Spotify API
Spotify + Discord Bot
 
Try it
Create Channel Invite with Discord Bot API on New Saved Track from Spotify API
Spotify + Discord Bot
 
Try it
New Playlist from the Spotify API

Emit new event when a new playlist is created or followed by the current Spotify user.

 
Try it
New Saved Track from the Spotify API

Emit new event for each new track saved to the current Spotify user's Music Library.

 
Try it
New Track by Artist from the Spotify API

Emit new event for each new Spotify track related with an artist. see docs here

 
Try it
New Track in Playlist from the Spotify API

Emit new event for each new Spotify track added to a playlist

 
Try it
New Message in Channel from the Discord Bot API

Emit new event for each message posted to one or more channels

 
Try it
Add Items to a Playlist with the Spotify API

Add one or more items to a user’s playlist. See the docs here.

 
Try it
Create a Playlist with the Spotify API

Create a playlist for a Spotify user. The playlist will be empty until you add tracks. See the docs here.

 
Try it
Get a Category's Playlists with the Spotify API

Get a list of Spotify playlists tagged with a particular category. See the docs here.

 
Try it
Get a Playlist's Items with the Spotify API

Get full details of the items of a playlist owned by a Spotify user. See the docs here.

 
Try it
Get a Track with the Spotify API

Get a track by its name or ID. See the docs here

 
Try it