ntlm 2.0.1 copy "ntlm: ^2.0.1" to clipboard
ntlm: ^2.0.1 copied to clipboard

Library for making HTTP requests that require NTLM authentication

example/ntlm_example.dart

import 'package:ntlm/ntlm.dart';

void main() {
  var client = NTLMClient(
    domain: '',
    workstation: 'LAPTOP',
    username: 'User208',
    password: 'password',
  );

  client.get(Uri.parse('https://example.com/')).then((res) {
    print(res.body);
  });
}
7
likes
115
pub points
82%
popularity

Publisher

verified publishermrbbot.dev

Library for making HTTP requests that require NTLM authentication

Repository (GitHub)
View/report issues

Documentation

API reference

License

Unlicense (LICENSE)

Dependencies

fixnum, http, pointycastle

More

Packages that depend on ntlm