想利用 flutter 的 post 上傳檔案至 file.coffee,並取得連結,利用以下程式碼上傳卻未成功(沒有印出任何statusCode),也有利用 postman post 為 400,請問是哪個部份出了問題,或是有其他網站可以上傳 json 取得連結可以直接開啟的也歡迎提供(試過firebase storage,但是目的地無法成功讀取)。
uploadFile() async {
String dir = (await getExternalStorageDirectory())!.path;
File file = File('$dir/result${idx}.json');
var postUri = Uri.parse("https://api.file.coffee/file/upload");
var request = new MultipartRequest("POST", postUri);
MultipartFile multipartFile = await MultipartFile.fromPath('file', file.path, contentType: new MediaType('application', 'json'));
request.files.add(multipartFile);
StreamedResponse response = await request.send();
print(response.statusCode);
}