我是kotlin初学者。
我正在尝试连接到我的http服务,这需要身份验证。
有错误:
未解析的引用:Authenticator
如何设置验证方?
var url = URL ("https://myURL")
val authenticator = object : Authenticator() {
val passwordAuthentication: PasswordAuthentication?
get() = PasswordAuthentication(
"user",
"password".toCharArray()
)
}
确保您已经在Kotlin文件的顶部导入了Authenticator
。我假定您正在尝试使用的是java.net.Authenticator,在这种情况下,请确保您的Kotlin文件看起来像这样:
import java.net.Authenticator
val authenticator = object : Authenticator() {
val passwordAuthentication: PasswordAuthentication
get() = PasswordAuthentication(
"user",
"password".toCharArray()
)
}