Build API URL from domain master
authorNeil McKillop <neil@mckillop.org>
Tue, 27 Jun 2023 13:38:46 +0000 (14:38 +0100)
committerNeil McKillop <neil@mckillop.org>
Tue, 27 Jun 2023 13:38:46 +0000 (14:38 +0100)
config.example.php
lemmy-api.php

index c5c8b5399c71559be1b8e1787ac835761f13b35e..72cd938dbdd5ee442f2cd31637afd09546abb3bc 100644 (file)
@@ -1,6 +1,6 @@
 <?php
-$lemmy_api_url = ""; // e.g. https://<lemmy_domain>/api/v3/";
+$lemmy_domain = ""; // e.g. lemmy.ml
 $username = "";
 $password = "";
-$token_file = ".lemmy-api-token";
+$token_file = ".lemmy-api-token"; // this is where your token is cached, can be any location
 ?>
index 65ad2585990a06f5d7886ef07a5937076e0ba38b..669d00fc01f20d1a9fc6eb77f812cee81c647b9c 100755 (executable)
@@ -1,6 +1,7 @@
 #!/usr/bin/php
 <?php
 require("config.php");
+$lemmy_api_url = "https://".$lemmy_domain."/api/v3/";
 
 $implemented_commands = array(
        "purgePerson"   => "PERSONID [reason]",