Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

get user id discord.py

import discord
import asyncio

client = discord.Client()

@client.event
async def on_message(message):
    print(message.author.id)

client.run('token')
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #user #id
ADD COMMENT
Topic
Name
6+2 =