Sure! Here are the steps on how to include JWT token authorization headers when sending a Get request using Flutter:
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'package:jwt_decoder/jwt_decoder.dart';
Future<String> getToken() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
return prefs.getString('access_token');
}
Future<http.Response> getData() async {
final token = await getToken();
final response = await http.get(
Uri.parse('https://example.com/api/data'),
headers: <String, String>{
'Authorization': 'Bearer $token',
'Content-Type': 'application/json; charset=UTF-8',
},
);
return response;
}
getData()
function when you want to retrieve data from the API. You can use the following code:getData().then((response) {
if (response.statusCode == 200) {
final data = jsonDecode(response.body); // process the data
} else {
throw Exception('Failed to load data');
}
});
That's it! With these steps, you can include JWT token authorization headers when sending a Get request using Flutter.
Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss
Asked: 2021-05-01 11:00:00 +0000
Seen: 7 times
Last updated: Aug 01 '22
In a new Flutter project on Android Studio, is it possible to not have any libs or main.dart file?
How can Google calendar events be generated on the server-side using Flutter?
How can I retrieve an SVG image from a URL in Flutter?
How can I combine streams of different types in Dartlang using rxdart?
What are the steps to disable FlutterFire configuration?
How can zooming similar to desktop be achieved in HTML webview browser using Flutter?
How to imitate Http Client calls during flutter testing?
What is the process of invoking a Cloud Function in Firebase through Flutter?