summaryrefslogtreecommitdiffstats
path: root/backend/apitest.php
diff options
context:
space:
mode:
Diffstat (limited to 'backend/apitest.php')
-rw-r--r--backend/apitest.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/backend/apitest.php b/backend/apitest.php
deleted file mode 100644
index 95efc38..0000000
--- a/backend/apitest.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-require_once("api.php");
-$api = new AnyClip("47ff842f-2eed-4715-9520-741e43342c8b");
-for ($current = 0, $titles = $api->titles($current, 20); $current < $titles->TotalItemCount; $current += 20, $titles = $api->titles($current, 20)) {
- foreach ($titles->Items as $title) {
- if (count($api->clipsForTitle($title->Code)->Items) > 0) {
- echo $title->Name;
- echo "\n";
- }
- }
-}
-?> \ No newline at end of file