From b25781909f5baba59dd04bc61ac7b56d41977e93 Mon Sep 17 00:00:00 2001 From: Rustem Date: Sat, 23 Nov 2024 12:08:22 +0500 Subject: [PATCH] forte integration prod --- lib/core/services/ApiService.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/services/ApiService.dart b/lib/core/services/ApiService.dart index 230202f..ca6cbdf 100644 --- a/lib/core/services/ApiService.dart +++ b/lib/core/services/ApiService.dart @@ -86,8 +86,8 @@ class ApiService extends BaseService { print(hash); Map requestBody = {'login': login, 'hash': hash}; - //var response = await requestFormData('/halykpos/gettoken', requestBody, bodyEntry: true, posEndPoint: true, statusCheck: false); - var response = await requestFormData('/fortepos/test/gettoken', requestBody, bodyEntry: true, posEndPoint: true, statusCheck: false); + //var response = await requestFormData('/fortepos/test/gettoken', requestBody, bodyEntry: true, posEndPoint: true, statusCheck: false); + var response = await requestFormData('/fortepos/prod/gettoken', requestBody, bodyEntry: true, posEndPoint: true, statusCheck: false); print(response); return FortePosSession.fromJson(jsonDecode(response)); }