Spotify 'query' not working, link works with playing

Hey, i'm working on my discord bot to only play spotify tracks and other supported sources. However, i'm having an issue. When I use a Spotify query like this: /play query:i gotta feeling - black eyed peas, I get the error: "Oops! I couldn't find anything matching your query on Spotify. 🤔 Try something else, maybe?" (which is my own custom message). But, when I use a direct Spotify link like this: /play query:https://open.spotify.com/track/4kLLWz7srcuLKA7Et40PQR?si=9ec37e8d597046ae, it works fine and starts playing. Anyone has an idea to where it goes wrong? Code will be posted down below ⬇️
Solution:
So like this?
const res = await client.moonlink.search({ query, source: "spsearch", requester: interaction.user.id });
const res = await client.moonlink.search({ query, source: "spsearch", requester: interaction.user.id });
...
Jump to solution
7 Replies
Justin
JustinOP3w ago
I'm using an publicly available Lavalink server for development purposes, I will switch to own one later, this is the one that I'm using.
Hosted by @ hatry4/naig - Version 4.0.8
Plugins: youtube-plugin:1.8.3, lavalyrics-plugin:1.0.0, lavasrc-plugin:4.2.0, sponsorblock-plugin:3.0.1, lavasearch-plugin:1.0.0, skybot-lavalink-plugin:1.7.0, java-lyrics-plugin:1.6.5, jiosaavn-plugin:v1.0.2 and Spotify API

Host : lavahatry4.techbyte.host
Port : 3000
Password : "NAIGLAVA-dash.techbyte.host"
Secure : false
Hosted by @ hatry4/naig - Version 4.0.8
Plugins: youtube-plugin:1.8.3, lavalyrics-plugin:1.0.0, lavasrc-plugin:4.2.0, sponsorblock-plugin:3.0.1, lavasearch-plugin:1.0.0, skybot-lavalink-plugin:1.7.0, java-lyrics-plugin:1.6.5, jiosaavn-plugin:v1.0.2 and Spotify API

Host : lavahatry4.techbyte.host
Port : 3000
Password : "NAIGLAVA-dash.techbyte.host"
Secure : false
The actual code:
import { SlashCommandBuilder, EmbedBuilder, Colors } from "discord.js";
import { client } from "../../bot";

function createEmbed({ color, author, description }) {
return new EmbedBuilder()
.setColor(color)
.setAuthor({ name: author.name, iconURL: author.iconURL })
.setDescription(description);
}

export const data = new SlashCommandBuilder()
.setName("play")
.setDescription("Play a song in your voice channel.")
.addStringOption(option =>
option.setName("query")
.setDescription("The song you want to play.")
.setRequired(true)
);

export async function execute(interaction) {
const embedOptions = {
author: { iconURL: interaction.client.user.displayAvatarURL() },
ephemeral: true,
};

if (!interaction.member.voice.channel) {
return interaction.reply(createEmbed({ color: Colors.Yellow, author: { ...embedOptions.author, name: "🚨 Hold up!" }, description: "You need to be in a voice channel to use this command." }));
}

const query = interaction.options.getString("query");

if (/^(https?:\/\/)?(www\.)?(youtube\.com|youtu\.?be)\//.test(query)) {
return interaction.reply(createEmbed({ color: Colors.Red, author: { ...embedOptions.author, name: "❌ Oops! YouTube isn't allowed" }, description: "Sorry, but I can't play YouTube links. Please use another source instead." }));
}

const player = client.moonlink.createPlayer({
guildId: interaction.guild.id,
voiceChannelId: interaction.member.voice.channel.id,
textChannelId: interaction.channel.id,
autoPlay: true
});

if (!player.connected) {
player.connect({ setDeaf: true, setMute: false });
}

try {
const res = await client.moonlink.search({ query, source: "spotify", requester: interaction.user.id });

if (res.loadType === "loadfailed" || res.loadType === "empty") {
const errorDescription = res.loadType === "loadfailed"
? "Something went wrong while searching for your track."
: "Oops! I couldn't find anything matching your query.";

return interaction.reply(createEmbed({ color: res.loadType === "loadfailed" ? Colors.Red : Colors.Blue, author: { ...embedOptions.author, name: "⚠️ Something went wrong" }, description: errorDescription }));
}

const embed = new EmbedBuilder().setColor(Colors.Blue);
if (res.loadType === "playlist") {
embed.setAuthor({ name: `🎶 Playlist Added: ${res.playlistInfo.name}`, iconURL: embedOptions.author.iconURL })
.setDescription(`Added ${res.tracks.length} tracks to the queue.`);
res.tracks.forEach(track => player.queue.add(track));
} else {
player.queue.add(res.tracks[0]);
embed.setAuthor({ name: `🎵 Track Added: ${res.tracks[0].title}`, iconURL: embedOptions.author.iconURL })
.setURL(res.tracks[0].url)
.setThumbnail(res.tracks[0].artworkUrl)
.addFields(
{ name: "Duration", value: res.tracks[0].isStream ? "LIVE" : `${Math.floor(res.tracks[0].duration / 1000)}s`, inline: true },
{ name: "Requested by", value: `<@${interaction.user.id}>`, inline: true }
);
}

interaction.reply({ embeds: [embed] });
if (!player.playing) player.play();
} catch (error) {
console.error("Error while playing track:", error);
interaction.reply(createEmbed({ color: Colors.Red, author: { ...embedOptions.author, name: "⚠️ Uh-oh, something went wrong..." }, description: "Whoops, something went wrong while trying to play that track." }));
}
}
import { SlashCommandBuilder, EmbedBuilder, Colors } from "discord.js";
import { client } from "../../bot";

function createEmbed({ color, author, description }) {
return new EmbedBuilder()
.setColor(color)
.setAuthor({ name: author.name, iconURL: author.iconURL })
.setDescription(description);
}

export const data = new SlashCommandBuilder()
.setName("play")
.setDescription("Play a song in your voice channel.")
.addStringOption(option =>
option.setName("query")
.setDescription("The song you want to play.")
.setRequired(true)
);

export async function execute(interaction) {
const embedOptions = {
author: { iconURL: interaction.client.user.displayAvatarURL() },
ephemeral: true,
};

if (!interaction.member.voice.channel) {
return interaction.reply(createEmbed({ color: Colors.Yellow, author: { ...embedOptions.author, name: "🚨 Hold up!" }, description: "You need to be in a voice channel to use this command." }));
}

const query = interaction.options.getString("query");

if (/^(https?:\/\/)?(www\.)?(youtube\.com|youtu\.?be)\//.test(query)) {
return interaction.reply(createEmbed({ color: Colors.Red, author: { ...embedOptions.author, name: "❌ Oops! YouTube isn't allowed" }, description: "Sorry, but I can't play YouTube links. Please use another source instead." }));
}

const player = client.moonlink.createPlayer({
guildId: interaction.guild.id,
voiceChannelId: interaction.member.voice.channel.id,
textChannelId: interaction.channel.id,
autoPlay: true
});

if (!player.connected) {
player.connect({ setDeaf: true, setMute: false });
}

try {
const res = await client.moonlink.search({ query, source: "spotify", requester: interaction.user.id });

if (res.loadType === "loadfailed" || res.loadType === "empty") {
const errorDescription = res.loadType === "loadfailed"
? "Something went wrong while searching for your track."
: "Oops! I couldn't find anything matching your query.";

return interaction.reply(createEmbed({ color: res.loadType === "loadfailed" ? Colors.Red : Colors.Blue, author: { ...embedOptions.author, name: "⚠️ Something went wrong" }, description: errorDescription }));
}

const embed = new EmbedBuilder().setColor(Colors.Blue);
if (res.loadType === "playlist") {
embed.setAuthor({ name: `🎶 Playlist Added: ${res.playlistInfo.name}`, iconURL: embedOptions.author.iconURL })
.setDescription(`Added ${res.tracks.length} tracks to the queue.`);
res.tracks.forEach(track => player.queue.add(track));
} else {
player.queue.add(res.tracks[0]);
embed.setAuthor({ name: `🎵 Track Added: ${res.tracks[0].title}`, iconURL: embedOptions.author.iconURL })
.setURL(res.tracks[0].url)
.setThumbnail(res.tracks[0].artworkUrl)
.addFields(
{ name: "Duration", value: res.tracks[0].isStream ? "LIVE" : `${Math.floor(res.tracks[0].duration / 1000)}s`, inline: true },
{ name: "Requested by", value: `<@${interaction.user.id}>`, inline: true }
);
}

interaction.reply({ embeds: [embed] });
if (!player.playing) player.play();
} catch (error) {
console.error("Error while playing track:", error);
interaction.reply(createEmbed({ color: Colors.Red, author: { ...embedOptions.author, name: "⚠️ Uh-oh, something went wrong..." }, description: "Whoops, something went wrong while trying to play that track." }));
}
}
UnschooledGamer
Hey, Justin for source param/argument it's spsearch for Spotify. I don't think moonlink.js handles normal source Names other than source identifiers(ytsearch,spsearch, etc). You had no issues with links as it's not dependent on the source parameter/argument, It's directly detected based on Link/Url provided by the user/you.
Solution
Justin
Justin3w ago
So like this?
const res = await client.moonlink.search({ query, source: "spsearch", requester: interaction.user.id });
const res = await client.moonlink.search({ query, source: "spsearch", requester: interaction.user.id });
MEE6
MEE63w ago
GG @Justin, you just advanced to level 3!
UnschooledGamer
Yes.
Justin
JustinOP3w ago
That worked, thanks!

Did you find this page helpful?