gpt4 book ai didi

api - 使用 webhook 在不和谐服务器上创建 channel

转载 作者:行者123 更新时间:2023-12-05 06:27:11 24 4
gpt4 key购买 nike

我正在使用 discord webhook api 将消息发送到我的 discord 服务器 channel 。在一个新用例中,我想创建一个带有 webhook 的新 channel 。不幸的是我找不到任何 API 来这样做。我在这里阅读了整个文档:https://discordapp.com/developers/docs/resources/webhook#create-webhook

这甚至可以做到吗?我看到了允许它的 discord 机器人的方法 - 因此我认为它也应该可以通过 webhook 实现。

最佳答案

我认为 Discord webhook 仅用于发送消息,仅此而已,如果您不想手动创建 channel ,您可能必须使用机器人来创建 channel 。

我认为只有重写分支支持通过 discord.py API 创建 webhook

安装 discord.py-rewritepip install git+https://github.com/Rapptz/discord.py@rewrite

import discord
from discord.ext.commands import Bot
bot=Bot(command_prefix='.')

@bot.event
async def on_ready():
print(bot.user.name)


@bot.command()
async def chan(msg):
chan=await msg.guild.create_text_channel(name='New text')
web=await chan.create_webhook(name='New web')
print(web.url)

bot.run("YOUr bot token here")

您可以找到文档 here你可以创建你的机器人 here

关于api - 使用 webhook 在不和谐服务器上创建 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55460847/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com