0 purchases
ssl pining checking
Create assets/certification folder put the "
just right click and reName ecxtension .cer to pem
By Akhilesh Goswami
check out this video
https://youtu.be/7ZrpFIZ5J1Y
add in pubspec.yaml
add this line
assets:
assets/certification/
Expamle
import 'package:http/http.dart' as http;
http.Client client;
@override
void onInit() async {
client = await SSLPining().getSSLPinningClient();
super.onInit();
copied to clipboard
}
Calling Api throw client
final http.Response response = await client.post(Uri.parse(url),
headers: <String, String>{
'Content-Type': 'application/json',
'Authorization': 'Token ' +
await prefs.getString(Constants.token, isEncrypted: true)
},
body: json.encode(data));
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.