我们正在尝试使用requestjs调用基于 JSON 的 API ,但我们从服务器收到错误消息。
request.get({
url: 'https://api.myapi.com',
timeout: 120000,
headers: {
username: 'myuser',
password: 'mypassword'
}
}, function (err, result) {
...
}
)
错误:
java.lang.IndexOutOfBoundsException: Index: 0
java.util.Collections$EmptyList.get(Collections.java:4454)
com.itemmaster.api.rest.svc.authentication.OpenSSOUserAuthServiceImpl.authenticate(OpenSSOUserAuthServiceImpl.java:159)
com.itemmaster.api.rest.profiler.SecurityProfiler.profile(SecurityProfiler.java:58)
使用 curl 运行相同的调用时返回没有任何问题。
curl --header "username:myuser" --header "password:mypassword" 'https://api.myapi.com'