fix: QC-Ratings aus 7 älteren Artikeln entfernt (CHECK 10)

This commit is contained in:
Hermes Agent
2026-06-23 23:47:51 +02:00
parent e73e0e88de
commit 4d90e4249d
656 changed files with 2602398 additions and 3 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
UA="BSN-OpenClaw/1.0 (Brettspiel-News.de; kontakt@brettspiel-news.de)"
AK="***"
for fid in 1 9 11; do
echo "=== Forum $fid ==="
curl -s --max-time 15 -H "User-Agent: $UA" -H "Authorization: Bearer $AK" "https://boardgamegeek.com/xmlapi2/threads?forumid=$fid&sort=postdate&sortdir=desc&count=5" 2>/dev/null | head -50
echo ""
done