summaryrefslogtreecommitdiff
path: root/lib/services/storegear_api_service.dart
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-04-03 19:43:07 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-04-03 19:43:07 +0200
commit6af69e34db5e5312961b7924bd0d509f9811e8da (patch)
treef897243f76dd57042e6679414944420e3a72d831 /lib/services/storegear_api_service.dart
parent020b183c2dba08eef706a2b2bcdd6e7d7d216feb (diff)
v1.23.1
Diffstat (limited to 'lib/services/storegear_api_service.dart')
-rw-r--r--lib/services/storegear_api_service.dart6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/services/storegear_api_service.dart b/lib/services/storegear_api_service.dart
index a37e1d7..57520cc 100644
--- a/lib/services/storegear_api_service.dart
+++ b/lib/services/storegear_api_service.dart
@@ -23,7 +23,7 @@ class StoregearApiService extends IStoregearApiService {
}
final response = await http.post(
- Uri.parse('http://dhlapis.com/delivery/v1/users/login?env_type=PROD'),
+ Uri.parse('https://storegear-app.dhlparcel.nl/delivery/v1/users/login?env_type=PROD'),
headers: {'X-REQ-UUID': Uuid().v1()},
body: jsonEncode(req));
@@ -58,7 +58,7 @@ class StoregearApiService extends IStoregearApiService {
}
final response = await http.get(
- Uri.parse('http://dhlapis.com/delivery/v1/routes'),
+ Uri.parse('https://storegear-app.dhlparcel.nl/delivery/v1/routes'),
headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()});
try {
@@ -89,7 +89,7 @@ class StoregearApiService extends IStoregearApiService {
final response = await http.get(
Uri.parse(
- 'http://dhlapis.com/delivery/v1/routes/' + tripkey.toString()),
+ 'https://storegear-app.dhlparcel.nl/delivery/v1/routes/' + tripkey.toString()),
headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()});
try {