如何在Discord.py中获取消息的时间戳?

2024-10-02 02:32:04 发布

您现在位置:Python中文网/ 问答频道 /正文

所以我一直在尝试做一个机器人,当消息被发送并上传到一个数据库时,它会被获取。我就是搞不懂这个东西

以下是我的一些代码:

'{datetime.datetime.fromtimestamp(discord.Message.created_at)}'

我知道这是错误的,因为不和谐。信息给出了一个对象。如何从中获取整数或时间

编辑:

@client.command()
async def belep(message, url, felhasz, jelsz):
    if isinstance(message.channel, discord.DMChannel):
        for i in c:
            if i['Url'] == url:
                db = MySQLdb.connect(xxxxx)
                cursor = db.cursor()
                print(url + " " + felhasz + " " + jelsz)
                icode = i["InstituteCode"]
                headers = {'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'}
                payload = {'institute_code': f'{icode}', 'userName': f'{felhasz}', 'password': f'{jelsz}',
                           'grant_type': 'password', 'client_id': '919e0c1c-76a2-4646-a2fb-7085bbbf3c56'}

                response = requests.get(f"""https://{icode}.e-kreta.hu/idp/api/v1/Token""", headers=headers, data=payload)

                rjson = response.json()
                print()
                cursor.execute(
                    f"INSERT INTO token (mauthor, access_token, token_type, expires_in, refresh_token, msent, tokexpire) VALUES ('{message.author.id}', '{rjson['access_token']}', '{rjson['token_type']}', '{rjson['expires_in']}', '{rjson['refresh_token']}', '{datetime.datetime.fromtimestamp(discord.Message.created_at)}','{datetime.datetime.fromtimestamp(discord.Message.created_at)}')")

Tags: intokenurlmessagedatetimecursoratdiscord
1条回答
网友
1楼 · 发布于 2024-10-02 02:32:04

此时您正在调用discord.Message类,但实际上您希望调用从该方法获得的消息对象。所以只需使用message而不是discord.Message

注意:message.created_at实际上已经返回了一个datetime对象documentation

相关问题 更多 >

    热门问题