http.dart HttpException: Connection closed before full header was received

Viewed 3297

while calling a post API on flutter via http.dart i am getting following error:

HttpException: Connection closed before full header was received, uri = http://192.168.3.218:12225/resourcabc/subresourceXYZ

Why is it so when postman is giving correct response. I have seen this issue being asked before too. Also, i am debugging on a physical device: samsung

Here is the code

  Future<Map> post(
String path, {
String token,
dynamic body,
bool parseResponse: false,
isFormData: false,
isUseBaseURL: false,
isEncoded: false,
  }) async {
Uri uri;
uri =
    isUseBaseURL ? Uri.parse('${Paths.baseUrl}/$path') : Uri.parse('$path');

print(uri.toString());
print(body.toString());

var request =
    await client.postUrl(uri).timeout(const Duration(seconds: 30));

if (token != null) {
  request.headers.add(HttpHeaders.authorizationHeader, 'Bearer $token');
} else {
  print('token is null');
  request.headers.add("X-Consumer-Custom-ID", "96");
}

if (body != null) {
  if (isFormData) {
    request
      ..headers.contentType = new ContentType(
          'application', 'x-www-form-urlencoded',
          charset: 'utf-8')
      ..write(body);
  } else {
    request
      ..headers.contentType = ContentType.json
      ..write(isEncoded ? body : json.encode(body));
  }
}
print(json.encode(body));
print('Sending data');
var response = await request.close();
print(response.statusCode);
Map responseMap = await _extractJson(response);
_checkAndThrowError(response, responseMap);
return responseMap;

}

1 Answers

The error on connecting to the service protocol seems to be an API-level issue as mentioned on this GitHub issue thread. Common workarounds suggested is to use a different API level on your emulator.

Related