http 依存関係を使用して http 投稿要求を作成しています。応答で以下のエラーに直面しています。私は以下のコードを投稿しています:
flutter: Error on line 1, column 32: Invalid media type: expected /[^()<>@,;:"\\\/[\]?={} \t\x00-\x1F\x7F]+/.
╷
1 │ application/json;charset=utf-8;
│
^
以下は、私がエラーに直面しているコードです:
try {
String url = 'https://app.restroapp.com/';
Map<String, String> headers = {"Content-type": "application/json"};
String json = '{"device_id": "abaf785580c22722", "user_id": "", "device_token": "","platform":"android"}';
// make POST request
Response response = await post(Uri.encodeFull(url), headers: headers, body: json);
// check the status code for the result
int statusCode = response.statusCode;
// this API passes back the id of the new item added to the body
String body = response.body;
print(statusCode);
print(body);
} catch (e) {
print(e);
}