I have a question, for the discord API in python, is it possible for the discord bot to have a discord account, thus I will be able to add the discord bot as a friend?
You can't send friend requests to bots.
But however, it's possible to use your discord account token instead of the bot's one, then you would be able to send friend requests, but this behavior is called self-botting and is against the Discord TOS
Related
I intend to use a Django web application where users of the application will be able to send messages to Discord.
The idea is that this message will be sent through a Discord bot instead of webhooks so that I am able to add reactions to the messages and easily manage the message.
Is it possible to achieve this functionality using the discord.py library?
Upon researching the discord.py documentation, it seems that messages are sent as a result of certain events that occur in Discord.
I was recently discovering some discord Servers and I saw this:
A Bot with no tag(Or on Mobile #0000)
How can I do this?(Btw I'm working with discord.py)
That is a Discord Webhook and not a Discord Bot. It isnt possible to have custom discriminators or no discriminator in your discord bots.
I have a bot working on Laravel Framework, there is a need to send a message to Viber bot. Is it possible?
As I know Telegram doesn't support API to sending messages to external systems like Viber.
But you always can send message from Telegram bot to your server, and then forward this message from server to Viber.
I have been working on azure chat bot using the bot framework SDK v4 and I have ran into an issue. My bot needs to initiate a conversation first. I have seen some examples with proactive bot but that requires us to save the user credentials as a cookie. What I need is a chat bot that sends the first message to user via SMS to initiate the conversation. The bots needs to be able to set the recipient phone number dynamically. I have looked at integrating the Twillio channel to my bot, but the problem is that the user has to initiate the conversation to the Twillio phone number which then forwards the text to Azure chat bot. I was wondering if there is anything out there which will allow the chat bot to initiate the conversation first via SMS and the phone number of the recipient should be set dynamically. Is there anything out there currently on Microsoft stack? Our company has been a long partner with Microsoft so I would like to have the chat bot using the Microsoft Azure Bot Service. Can you please guide me or forward some documentation? Any help would be appreciated.
I'm working on an integration between Microsoft Teams and Slack.
I'm building a Microsoft Teams application which is connected to a Microsoft Bot.
Additionally, I created a server for:
Listening to messages which were sent by users in Slack (via Slack webhooks)
Posting them in Microsoft Teams conversation as a user message to the bot (outgoing message)
I receive messages from Slack (which were sent by a Slack user) to my server and I wish to post them in Microsoft Teams as messages from the user to the bot and I'm not able to do so.
I'm able to send messages from Bot to user in Microsoft Teams app via Microsoft Bot's "botbuilder" Node.js SDK:
session.send(message);
How can I send the message on the other direction (from user to bot)?
You can't. See this question for more info, but the short version is:
The BotFramework has no direct way to do this.
Even the Teams Graph API doesn't currently support this. They're working on it, but don't have an ETA.
The closest thing to a workaround would be:
User writes message in Slack to Bot
Bot receives message and posts a proactive message in Teams, something like:
User #louis1600 said: "blah blah blah"
Resources:
Proactive Messages in Teams
#mention-ing users in Teams with a Bot
The many other Teams Bot related questions I've answered