flutter http post with user code example
Example 1: flutter http.post headers
Future get(String url) async {
//Pass headers below
return http.post(url, headers: {"Authorization": "Some token"}).then(
(http.Response response) {
final int statusCode = response.statusCode;
LogUtils.d("====response ${response.body.toString()}");
if (statusCode < 200 || statusCode >= 400 || json == null) {
throw new ApiException(jsonDecode(response.body)["message"]);
}
return _decoder.convert(response.body);
});
}
Example 2: how to perform get request in flutter
import 'package:http/http.dart' as http;
import 'dart:convert';
class API
{
//replace with your endpoint
static String BASE_URL = 'https://some-url/api/';
static Future> getRequest() async {
Response res = await http.get(BASE_URL+'example');
if (res.statusCode == 200) {
List body = jsonDecode(res.body);
// complete by parsing the json body return into ExampleData object and return
//.................
}
}
}