我发送到传入 webhook 的提及呈现为纯文本。

注意:使用请求包发送 post 请求。

尝试了以下方法:

发送提及作为 <@userid>
结果:<@userid>//作为纯文本

request.post(
       `${channels[message.channel.name]}`,
       {
           json: {
               text:
               'To: ' + mapDiscordToSlackNames(message.mentions.users) + '\n' +
               'Discord channel: #' + message.channel.name + '\n' +
               'Link:  <' + message.url + '|Link to post>' + '\n' +

结果:至:@soda//作为纯文本而不是@soda 用户提及

完整代码

// require the discord.js module
const Discord = require('discord.js');
const devs = require('./devs.json');
const channels = require('./channels.json');
const dotenv = require('dotenv');
const path = require('path');
var request = require('request');

dotenv.load({
  path: path.join(__dirname, `.env`),
  silent: true
});

// create a new Discord client
const client = new Discord.Client();

// Map discord usernames of devs to slack usernames
function mapDiscordToSlackNames(discordUsers) {
    return discordUsers.map( user => {
        return '@' + devs[user.username];
     })
}

// when the client is ready, run this code
// this event will only trigger one time after logging in
client.once('ready', () => {
    console.log('Discord Connected!');
});

// on message on discord
client.on('message', message => {

    console.log(channels[message.channel.name]);
    request.post(
        `${channels[message.channel.name]}`,
        {
            json: {
                text:
                'To: ' + mapDiscordToSlackNames(message.mentions.users) + '\n' +
                'Discord channel: #' + message.channel.name + '\n' +
                'Link:  <' + message.url + '|Link to post>' + '\n' +
                'Original Message: \n' +
                    '\t"' + message.author.username + ': ' + message.cleanContent + '"\n' +
                    `Attachements:  ${message.attachments.map(attachment => attachment.url)}`
             },
        },
        function (error, response, body) {
            if (!error && response.statusCode == 200) {
                console.log(body);
            }
        }
    );
});

// login to Discord with app's token
client.login(process.env.DISCORD_TOKEN);

devs 是一个 json 对象,它返回与不和谐用户名对应的松弛用户名。

最佳答案

原来我是通过在字符串中转义 '' 来发送用户标识的
'&lt@userid&gt' 等它作为纯文本传递。

关于javascript - 如何发布提及以松弛传入的 webhooks,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56796217/

10-12 15:38