getSettings(); $this->url = Endpoints::HAMSALAM_AUTH_TOKEN; $this->basalamToken = $settings[SettingsConfig::TOKEN]; } public function fetch() { try { $apiService = syncBasalamContainer()->get(ApiServiceManager::class); $body = ['basalam_token' => $this->basalamToken]; $response = $apiService->post($this->url, $body); if (!$response || !isset($response['body'])) return ('خطا در دریافت توکن همسلام'); $body = json_decode($response['body'], true); if (!$response || !isset($body['access_token'])) return ('خطا در دریافت access_token همسلام'); $data = [ SettingsConfig::HAMSALAM_TOKEN => $body['access_token'], ]; SettingsManager::updateSettings($data); return $body['access_token']; } catch (\Exception $e) { return 'خطا در دریافت توکن همسلام: ' . $e->getMessage(); } } }