Actions
Activity #1945
closedFeature #138: Development and Unit Testing
Version #1900: Version 1.11
Send API data in body
Start date:
12/26/2023
Due date:
12/26/2023
% Done:
100%
Estimated time:
Planned Due Date:
Description
Modify all API calls to send data through body instead of queryParameters
Uri uri = Uri.parse(url).replace(queryParameters: {'data': data});
http.Response response = await http.post(uri, headers: headers).timeout(
Duration(
minutes: Constant
.APICALLTIMEOUTLMTDOWNLOAD), // Set the timeout duration to 5 minutes
onTimeout: () {
throw TimeoutException(AppStrings.timeoutError.tr());
},
);
Updated by Aswathy M G over 2 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Updated by Thara S Pillai over 2 years ago
- Status changed from Resolved to Closed
Actions