38 lines
1.4 KiB
Bash
38 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
# Alternative approach: Use a more reliable method to create Discord bots
|
|
# This script helps with multiple approaches
|
|
|
|
echo "=== Discord Bot Creation - Alternative Methods ==="
|
|
echo ""
|
|
|
|
# Approach 1: Use Puppeteer/Playwright with credentials
|
|
echo "Approach 1: Browser automation with saved Discord login session"
|
|
echo " - Can load existing Discord session from browser cookies/local storage"
|
|
echo " - Navigate to discord.com/developers/applications"
|
|
echo " - Click 'New Application', fill form, create bot"
|
|
echo " - Extract token from response"
|
|
echo ""
|
|
|
|
# Approach 2: Use Discord OAuth with redirect
|
|
echo "Approach 2: Discord OAuth with redirect URI"
|
|
echo " - Create an OAuth app with redirect to localhost"
|
|
echo " - Use authorization code flow to get access token"
|
|
echo " - Use access token to create applications"
|
|
echo ""
|
|
|
|
# Approach 3: Use existing bot tokens as reference
|
|
echo "Approach 3: Reverse engineer from existing bot token"
|
|
echo " - If you have any existing bots, we can reference them"
|
|
echo " - However, you still need to create new ones"
|
|
echo ""
|
|
|
|
echo "Current Blocker:"
|
|
echo " - Discord requires CAPTCHA for programmatic bot creation"
|
|
echo " - User account token alone isn't sufficient"
|
|
echo ""
|
|
echo "Recommendation:"
|
|
echo " - Use browser automation with pre-authenticated Discord session"
|
|
echo " - Or use a CAPTCHA solving service"
|
|
echo ""
|