Posts by Gustavo • 3 points
2 posts
-
0
votes0
answers44
viewsQ: Error to retrieve data from "raw" event
Well, I have a bot with this event: Bot.on('raw', async (event) => { if (event.t == "MESSAGE_REACTION_ADD") { const { d: data } = event; const user = Bot.users.fetch(data.user_id); const channel…
-
-4
votes1
answer54
viewsQ: Access a key in json
So. I’m working with the Youtube api to give GET the number of subscribers on a channel. All right. json gets to the code, my only problem is trying to get the value of the key subscriberCount. The…