具体来说,这个问题可能有点晚了,但是如果有人像我在寻找解决方案时那样偶然发现了这个问题,我就发布了https://github.com/mrbbot/ntlm。
它没有经过广泛测试,但似乎对我有用。
正在安装
将依赖项添加到
pubspec.yaml文件中:
dependencies: ntlm: ^1.3.0
用法示例
import 'package:ntlm/ntlm.dart';main() { NTLMClient client = new NTLMClient( domain: "", workstation: "LAPTOP", username: "User208", password: "password", ); client.get("https://example.com/").then((res) { print(res.body); });}


