About 101,000 results
Open links in new tab
  1. python - discord.py: Lookup user by id - Stack Overflow

    Oct 10, 2020 · I'm new to making Discord bots using Python. I have a list of user ids and I need to be able to resolve them to Discord usernames. Running client.get_user(my_id) returns my …

  2. How to get the ID of any user given the Username in Discord?

    Jan 1, 2021 · First of all let me recommend you to use the discord.ext.commands extension for discord.py, it will greatly help you to make commands. You just need to get a discord.Member …

  3. Find a discord user just by username (no tag) - Stack Overflow

    Aug 25, 2022 · -2 like title states I wanna find an old friend of mine, but the only thing I know it's his username, no tag number.. No mutual servers or anything unfortunally, and the discord …

  4. How do I get the User ID of a discord user using discord.py

    Im using Discord.py and Im trying to get the Discord userid of a user when they type into a channel. The userid can be found when you go into developer mode, and right click on a …

  5. How to get user's info only using user's ID? discord.py

    So far I just wanted to get user's info using their discord ID, I know I can use discord.Member instead, but I want to do it with their ID and do like k!userinfo 326024842765664257 Is there …

  6. How do I get someone's specific Discord ID - Stack Overflow

    Apr 2, 2025 · 1 I'm using Pycord to build a discord bot. I am trying to make it so if the user that is being banned equals a specific Discord ID, it will print: "Can not perform this action." What …

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

    Jun 23, 2022 · Discord has a Nodejs client with which you can get user information among other things. If you want to handle the logic on your client app, look into Discord REST API.

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

    May 1, 2022 · How to find user by their id in discord.js Asked 5 years, 9 months ago Modified 3 years, 6 months ago Viewed 69k times

  9. Looking up a GuildMember by their tag or ID - Stack Overflow

    Nov 6, 2023 · 0 I am building a bot that integrates Google Sheets to Discord that assigns roles to users. I have everything working as far as the bot can read and parse the webhook message. …

  10. How do I get the ID of an user in Discord.py - Stack Overflow

    discord.User.id isn't getting the id of an instance of the User class, it's getting that attribute from the base class itself. You need to instantiate the User object correctly, and read values from …