Discordのボットを作ろうとしており、スチームIDを元に画像を取得した後にメッセージを送信するようにしたいのですがうまくいきません。
おそらくPromiseをうまく使うことができれば解決すると思うのですが、その方法がわかりません。どなたかご教授お願いいたします。
また、Promise, resolve のあたりが煩雑になっているのでこれをasyncを使って解決できるのであればそちらも教えていただきたく思います。
js
1require('dotenv').config(); 2 3const SteamAPI = require('steamapi'); 4const steam = new SteamAPI('API_KEY'); 5const Discord = require('discord.js'); 6const client = new Discord.Client(); 7 8const chid_main = 'CHANNELL_ID'; 9 10function heyheyhey() { 11 steam.getUserSummary("USER_ID").then(summary => { 12 console.log('getsummary'); 13 var content = { 14 embed: { 15 author: { 16 name: "Author name", 17 icon_url: summary.avatar.small 18 }, 19 description: 'description' 20 } 21 }; 22 console.log('set url'); 23 return content; 24 }); 25} 26client.on('ready',() => { 27 var promise = new Promise(function (resolve, reject) {resolve(heyheyhey());}) 28 promise.then((content) => { 29 client.channels.cache.get(chid_main).send(content); 30 console.log('send message'); 31 }) 32 33}) 34 35client.login();
実行結果
send message getsummary set url (node:2364) UnhandledPromiseRejectionWarning: DiscordAPIError: Cannot send an empty message at RequestHandler.execute (C:\Users\kent\AppData\Roaming\npm\node_modules\discord.js\src\rest\RequestHandler.js:154:13) at processTicksAndRejections (internal/process/task_queues.js:93:5) at async RequestHandler.push (C:\Users\kent\AppData\Roaming\npm\node_modules\discord.js\src\rest\RequestHandler.js:39:14) (Use `node --trace-warnings ...` to show where the warning was created) (node:2364) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1) (node:2364) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
回答1件
あなたの回答
tips
プレビュー