📜  récupérer avatar discord bot - Javascript (1)

📅  最后修改于: 2023-12-03 15:04:54.146000             🧑  作者: Mango

Recuperer Avatar Discord Bot - JavaScript

在Discord机器人中获取用户的头像可能是很有用的。本文将说明如何在JavaScript中检索Discord机器人中的用户头像。

使用Discord.js

使用Discord.js可以非常容易地检索用户头像。您只需要使用user.displayAvatarURL()即可获取用户的头像URL。下面是一个示例代码片段:

client.on('message', message => {
  if (message.content === '!avatar') {
    // 获取作者的头像链接
    message.reply(message.author.displayAvatarURL());
  }
});
更改头像尺寸

您可以使用显示头像的URL来更改头像的大小。您只需要将带有图像大小的查询参数添加到URL中。下面是一个示例代码片段:

client.on('message', message => {
  if (message.content === '!avatar') {
    // 获取作者缩略图链接
    const thumbnail = message.author.displayAvatarURL({ size: 256 });
    // 回复消息并添加作者的缩略图
    message.reply(`Here is your avatar in 256x256! ${thumbnail}`);
  }
});
结论

在Discord机器人中检索用户头像很容易。使用Discord.js,您只需使用user.displayAvatarURL()即可实现。您还可以使用查询参数更改头像尺寸。