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

outdated

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('https://example.com/').then((res) {
    print(res.body);
  });
}
7
likes
0
pub points
81%
popularity

Publisher

verified publishermrbbot.dev

Library for making HTTP requests that require NTLM authentication

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

fixnum, http, pointycastle, utf

More

Packages that depend on ntlm