Home > Mobile >  How can i add headers for authorization and content-type flutter
How can i add headers for authorization and content-type flutter

Time:08-14

i have this code for to call api; how can I add authorization and content-type headers to this?

  final url = Uri.parse('https://api.collectapi.com/economy/hisseSenedi');
  var counter;
  var hisseResult;
  Future callHisse() async {
    try{
      final response = await http.get(url);

      if(response.statusCode == 200){
        var result = hisselistFromJson(response.body);
        if(mounted);
        setState(() {
          counter = result.data.length;
          hisseResult = result;
        });
        return result;
      } else {
        print(response.statusCode);
      }
    } catch(e) {
      print(e.toString());
    }
  }

Thanks for your help

CodePudding user response:

you can do this:

Map<String, String> requestHeaders = {
       'Content-type': 'application/json',
       'Authorization': '<Your token>'
     };

final response = await http.get(url,headers:requestHeaders);
  • Related