Update
This commit is contained in:
@@ -6,7 +6,7 @@ Ce guide t'explique comment configurer l'authentification Discord OAuth2 pour le
|
||||
|
||||
1. Va sur le [Discord Developer Portal](https://discord.com/developers/applications)
|
||||
2. Clique sur **"New Application"** (Nouvelle Application)
|
||||
3. Donne un nom à ton application (ex: "France Femboy Transcripts")
|
||||
3. Donne un nom à ton application (ex: "Femboy Croissant Transcripts")
|
||||
4. Clique sur **"Create"** (Créer)
|
||||
|
||||
## Étape 2 : Récupérer le Client ID
|
||||
|
||||
@@ -42,6 +42,12 @@ try {
|
||||
const app = express();
|
||||
const PORT = process.env.TRANSCRIPT_PORT || 3000;
|
||||
|
||||
// --- CUSTOM HEADER (La petite touche perso) ---
|
||||
app.use((req, res, next) => {
|
||||
res.setHeader('X-Powered-By', 'Femboy Croissant WebEngine');
|
||||
next();
|
||||
});
|
||||
|
||||
// --- DEBUG: Middleware de log HTTP ---
|
||||
app.use((req, res, next) => {
|
||||
if (!req.url.includes('.css') && !req.url.includes('.js') && !req.url.includes('.png')) {
|
||||
|
||||
Reference in New Issue
Block a user