Home > database >  How to disable SSL Pinning on Flutter?
How to disable SSL Pinning on Flutter?

Time:11-10

We are using Flutter for app development. Our security testers said that we need to disable SSL Pinning in Flutter code so they can run some test. We couldn't do it. We use Dio package for HTTP request. How can we disable SSL Pinning on Flutter?

CodePudding user response:

EDIT:

SSL Pinning is not the default behavior. So you don't need to disable it if it had not already been enabled.

  • Related