I need a Discord bot that puts requests I receive from a website into a Discord channel.
I have no idea how to put it better, can anyone help?
I have no idea how to put it better, can anyone help?
Is the website yours? If so, you first need to create your hook in your backend, whenever a request is made, forward it to your bot service and send message to channel or dm.Quote:
I need a Discord bot that puts requests I receive from a website into a Discord channel.
I have no idea how to put it better, can anyone help?
So, first you need a way to detect changes / requests, if it uses an api great, just make the request to the api, if its a generated html page u will have to parse the response html to extract what you need. Either way you will need a pulling mechanism (make requests to the server in a fixed time, ex: every 5mins or so). When you have that working you can proceed to attach your telegram bot.Quote:
unfortunately the website is not mine