当我运行此特定命令时
@client.command()
async def start():
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'
await client.say("test")
flow = InstalledAppFlow.from_client_secrets_file(CLIENT_SECRETS_FILE, SCOPES)
credentials = flow.run_console()
await client.say(credentials)
我收到此消息
请访问此URL以授权此应用程序: https://accounts.google.com/o/oauth2/auth?response_type=code&client_id= ... 输入授权码:
我希望将其存储在一个变量中,而不是通过控制台打印此消息,以便可以通过discord bot将其打印到文本通道中。有人知道我该怎么做吗?