🎬 REAL WORKING DRAMA URLS ====================================================================== 1️⃣ NetShort (19 digits, starts with 1 or 2) ----------------------------------------------------------------------
Class "App\Services\NetShortService" not found
dev-utils/get_all_real_drama_urls.php
20
21// 1. NetShort
22echo "1️⃣ NetShort (19 digits, starts with 1 or 2)\n";
23echo str_repeat('-', 70) . "\n";
24try {
25 $service = new NetShortService('en');
26 $dramas = $service->getHome(0, 3);
27 foreach (array_slice($dramas, 0, 3) as $drama) {
28 $id = $drama['id'] ?? null;
29 $name = $drama['name'] ?? 'Unknown';
30 if ($id) {
31 echo "✅ {$baseUrl}/{$id}\n";
32 echo " {$name}\n\n";
33 }
34 }
35} catch (Exception $e) {
36 echo "❌ Error: " . $e->getMessage() . "\n\n";
37