About 647,000 results
Open links in new tab
  1. How do I mention a user in discord.py? - Stack Overflow

    May 14, 2017 · From a User object, use the attribute User.mention to get a string that represents a mention for the user. To get a user object from their ID, you need Client.get_user_info(id).

  2. python - Get Discord user ID from username - Stack Overflow

    Aug 25, 2019 · If I have a user's Discord name and discriminator as a string (e.g ExampleUser#1234) how can I get their user ID from it? I've found get_user(id), but that …

  3. Discord.py Send DM to specific User ID - Stack Overflow

    Nov 11, 2021 · Discord.py Send DM to specific User ID Asked 3 years, 11 months ago Modified 2 years, 2 months ago Viewed 19k times

  4. How to find user by their id in discord.js - Stack Overflow

    Mar 13, 2020 · How to find user by their id in discord.js Asked 5 years, 6 months ago Modified 3 years, 3 months ago Viewed 69k times

  5. How to ping a user with their user id in discord.js?

    Feb 22, 2019 · When I get a statement from one of my bot commands and it "@'s" another user, I receive that as their user id. When this happens I want to ping that user using that id, how …

  6. javascript - Discord: Get User by Id - Stack Overflow

    Nov 20, 2020 · That's not what I want. I would like to retrieve the user's information from my frontend, even by calling a backend function, but without having a discord bot which is always …

  7. How do I get the avatar of a specific user using his user id with ...

    Sep 7, 2020 · 4 I used discord.py to make a bot that stores the user ids in its database to identify them but I can't figure out how to get the avatar of a specific user just by using their id. I …

  8. python - Discord.py: Get user object with id - Stack Overflow

    Sep 6, 2020 · 2 I have a bot which only saves the id of a user (it's better working like that). Now I want to get the user-object from that id. I tried following which doesn't work for me, maybe I …

  9. python - Get user id from username Discord.py - Stack Overflow

    Apr 24, 2021 · 1 fetch_user takes in a snowflake or in easier terms, id. Getting a user with usernername is possible by making something like this: @bot.command() async def info(ctx, …

  10. Discord.py get user object from id/tag - Stack Overflow

    Feb 3, 2019 · 10 I'm using the discord.py library to build a discord bot. I'm trying to get a User object from an id or tag, however, I am using a user account instead of a bot account, so I …