From 45265106023becf5ea23ac4f3a76104727a55602 Mon Sep 17 00:00:00 2001 From: Thomas Brinkmann Date: Mon, 6 Jun 2022 11:51:18 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9EGET=20/service=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GET-%2Fservice.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GET-%2Fservice.md b/GET-%2Fservice.md index 749a717..00b87a6 100644 --- a/GET-%2Fservice.md +++ b/GET-%2Fservice.md @@ -33,7 +33,7 @@ Es sind keine Parameter notwendig. $curl = curl_init(); curl_setopt_array($curl, array( - CURLOPT_URL => 'control.local/api/v2/service?page=1&limit=10', + CURLOPT_URL => 'https://api.dsh.gg/api/v2/service?page=1&limit=10', CURLOPT_CUSTOMREQUEST => 'GET', CURLOPT_HTTPHEADER => array( 'X-TOKEN: test-token', @@ -50,7 +50,7 @@ echo $response; ##### cURL ```bash -curl --location --request GET 'control.local/api/v2/service?page=1&limit=10' \ +curl --location --request GET 'https://api.dsh.gg/api/v2/service?page=1&limit=10' \ --header 'X-TOKEN: test-token' \ --header 'Content-Type: application/json' ```