'Discord Only you can see this message
I wanted to get messages from a channel but the messages I want to get are these messages „only you can see this message“. I tried to get the messages with this request url: https://discord.com/api/v9/channels/966052113174102093/messages?limit=25, but I don’t get the hidden messages.
Solution 1:[1]
These types of messages are called ephemeral messages. You can make a message ephemeral only if it is from an interaction (buttons, slash commands, drop-down menus).
await interaction.response.send_message(content=content, ephemeral=True)
Add ephemeral=True
after the content, this should work only with interactions.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Sandy |