From 72c3f2575a09b66fe16f3c127a3287b98875ab53 Mon Sep 17 00:00:00 2001 From: Wayne Hsu Date: Fri, 26 May 2023 17:59:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=87sso=20url=E7=A7=BB=E5=88=B0.env?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/service/ApiService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/service/ApiService.php b/app/service/ApiService.php index 7d76d77..944bd29 100644 --- a/app/service/ApiService.php +++ b/app/service/ApiService.php @@ -14,7 +14,7 @@ class ApiService { private function __construct() { // 初始化 GuzzleHttp\Client 實例 $this->httpClient = new \GuzzleHttp\Client([ - 'base_uri' => 'https://sso.h888.fun/api/v1/' + 'base_uri' => env('utel.sso_base_url').'/api/v1/' ]); }