brodriro / HttpMutualAuthentication

Dart HTTP Mutual Authentication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Http Mutual Authentication

Using

Optional params: password and pathCertificate

  /// Init HttpAuth with HttpAuthBuilder
  /// sets [authPass] and [pathCertificate] for request
  HttpAuth httpAuth = new HttpAuthBuilder(
          authPass: "password", pathCertificate: "assets/certificate.p12")
      .build;

  /// Replace your url
  httpAuth.getRequest("http://www.google.com").then((result){
    /// Parse response with HttpAuth.parseBody -> String
    HttpAuth.parseBody(result).then((resultString){
      print("Results: $resultString");
    });
  });

About

Dart HTTP Mutual Authentication

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 100.0%