Nathan Gregory
Nathan Gregory

Reputation: 3

How To Get Information From Discord User ID / Name Even If The User Is Not Within The Server In Discord Python

I currently wanna make a discord bot that needs information from user inside ( and outside ) the server

I have a few discord id and discord user i wanna get informations from like profile picture,current username,last online,and online status

i have found the following website https://discord.id/ however it has recaptcha so i can't really use it for my bot however i'm curious as to how the website is able to grab those data

Upvotes: 0

Views: 23725

Answers (1)

kacper1236
kacper1236

Reputation: 144

Use this

await client.fetch_user(user.id)

Upvotes: 1

Related Questions