summaryrefslogtreecommitdiff
path: root/lib/services
diff options
context:
space:
mode:
Diffstat (limited to 'lib/services')
-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 {