From ca8e9ab47498f6a26a4e18e2040e1b6eeeeaa020 Mon Sep 17 00:00:00 2001 From: schrom01 Date: Mon, 21 Aug 2023 20:53:53 +0200 Subject: [PATCH] Sitze und Rechtsformen aus Zefix API --- api/zefixAPI.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/zefixAPI.php b/api/zefixAPI.php index ddb8183..45c3171 100644 --- a/api/zefixAPI.php +++ b/api/zefixAPI.php @@ -49,8 +49,6 @@ curl_close($ch); function sendAPICommunityRequest(string $username, string $password): string|bool { - echo $username; - echo $password; // API endpoint $apiUrl = 'https://www.zefix.admin.ch/ZefixPublicREST/api/v1/community'; @@ -82,6 +80,7 @@ function sendAPICommunityRequest(string $username, string $password): string|boo // Close cURL curl_close($ch); + echo $response; return $response; }