{"id":15112498,"url":"https://github.com/leroks/discord-auto-message-sender","last_synced_at":"2026-01-31T21:38:44.414Z","repository":{"id":218218698,"uuid":"745899748","full_name":"Leroks/Discord-Auto-Message-Sender","owner":"Leroks","description":"Discord Message Bot: An Auto message sender to any discord channel you wish. Farm servers with ease.","archived":false,"fork":false,"pushed_at":"2024-01-21T14:03:27.000Z","size":6,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T18:15:45.325Z","etag":null,"topics":["airdrop","automessagesender","blockchain","bot","crpyto","cryptocurrency","discord","discord-bot","discord-py","discordapp","discordbot","python-script"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Leroks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-20T13:44:52.000Z","updated_at":"2025-02-20T17:07:06.000Z","dependencies_parsed_at":"2024-09-26T01:00:39.881Z","dependency_job_id":null,"html_url":"https://github.com/Leroks/Discord-Auto-Message-Sender","commit_stats":null,"previous_names":["leroks/discord-auto-message-sender"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leroks%2FDiscord-Auto-Message-Sender","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leroks%2FDiscord-Auto-Message-Sender/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leroks%2FDiscord-Auto-Message-Sender/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leroks%2FDiscord-Auto-Message-Sender/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Leroks","download_url":"https://codeload.github.com/Leroks/Discord-Auto-Message-Sender/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247378141,"owners_count":20929297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airdrop","automessagesender","blockchain","bot","crpyto","cryptocurrency","discord","discord-bot","discord-py","discordapp","discordbot","python-script"],"created_at":"2024-09-26T01:00:37.108Z","updated_at":"2026-01-31T21:38:44.408Z","avatar_url":"https://github.com/Leroks.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Discord Bot Setup Guide\n\nA concise guide to configuring and running **DiscordBotStudio** bots with `bot.py`.\n\n---\n\n## Prerequisites\n\n| Requirement                                       | Reason                                          |\n| ------------------------------------------------- | ----------------------------------------------- |\n| **Python 3.8 or newer**                           | `bot.py` is written for modern Python versions. |\n| **Discord Account** (with developer mode enabled) | Needed to fetch IDs and tokens.                 |\n| **A text editor / IDE**                           | For editing `bot.py` or `messages_list`.        |\n\n\u003e **Tip**  Enable *Developer Mode* in Discord (Settings ▸ Advanced) to make copying IDs easier.\n\n---\n\n## 1 . Quick Configuration\n\nRun the helper script to collect everything in one go:\n\n```bash\npython3 bot.py --setall\n```\n\nThis will prompt you for the values shown in the table below.\n\n| Field           | Where to find it                | Steps                                                                                                                                                                                                              |\n| --------------- | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| **User Agent**  | Your web‑browser                | Copy from your browser’s *about* page or any request header. \"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) DiscordBotStudio/2.2.0 Chrome/91.0.4472.164 Electron/13.1.8 Safari/537.36\"                                                                                                                                                      |\n| **User Token**  | Browser Dev Tools ▸ Network     | 1. Open Discord in a browser and log in.2. Press **F12** (or right‑click ▸ *Inspect*).3. Switch to **Network** tab.4. Send *any* message.5. Select the request and copy the value of the **authorization** header. |\n| **Channel URL** | Browser address bar             | Open the target channel and copy the full URL.                                                                                                                                                                     |\n| **Channel ID**  | Right‑click channel ▸ *Copy ID* | Developer Mode must be enabled first.                                                                                                                                                                              |\n\n---\n\n## 2 . Manual Configuration (optional)\n\nIf you prefer editing directly, open `config.json` (created after `--setall`) and fill in the same values.\n\n---\n\n## 3 . Running the Bot\n\n```bash\npython3 bot.py\n```\n\nThe bot will connect with the stored credentials and begin posting the messages defined in `messages_list`.\n\n---\n\n## 4 . Customising `messages_list`\n\n`messages_list` (inside `bot.py`) is simply a Python list:\n\n```python\nmessages_list = [\n    \"Hello world!\",\n    \"Here’s another line.\",\n    # Add as many messages as you like\n]\n```\n\nEdit it as you wish—there’s no hard limit.\n\n---\n\n## 5 . Troubleshooting\n\n| Symptom                | Possible Cause                 | Fix                                                          |\n| ---------------------- | ------------------------------ | ------------------------------------------------------------ |\n| HTTP 401: Unauthorized | Wrong or expired *User Token*. | Re‑capture the token via Dev Tools and update `config.json`. |\n| \\`\\`                   | Missing channel permissions.   | Make sure the account can post in that channel.              |\n| Bot exits immediately  | Incorrect **Channel ID/URL**   | Verify both values; they must refer to the same channel.     |\n\n---\n\n## 6 . Useful Links\n\n- [Discord Developer Portal](https://discord.com/developers/docs/intro)\n- [Discord API Terms](https://discord.com/developers/docs/legal)\n\n---\n\n© 2025 — Happy coding!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleroks%2Fdiscord-auto-message-sender","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleroks%2Fdiscord-auto-message-sender","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleroks%2Fdiscord-auto-message-sender/lists"}