I make a download from a webside with HttpUtils.
url1 = "http://www.geocaching.com/seek/cache_details.aspx?wp=GC3TNVF"
If HttpUtils.IsSuccess(url1) Then
s = HttpUtils.GetString(url1)
The result ist not correct. I must have access with my password.
I have modyfy HttpUtilsService.ProcessNextTask and change hc.Execute to hc.ExecuteCredentials.
If hc.ExecuteCredentials (req, task, "my_name","Password") = True Then
The result of ExecuteCredentials gives true but I have not the right Info.
When I load the webside in a Webview then ist the result correct.
Can I have a acces to the string from the webview ?
Martin
url1 = "http://www.geocaching.com/seek/cache_details.aspx?wp=GC3TNVF"
If HttpUtils.IsSuccess(url1) Then
s = HttpUtils.GetString(url1)
The result ist not correct. I must have access with my password.
I have modyfy HttpUtilsService.ProcessNextTask and change hc.Execute to hc.ExecuteCredentials.
If hc.ExecuteCredentials (req, task, "my_name","Password") = True Then
The result of ExecuteCredentials gives true but I have not the right Info.
When I load the webside in a Webview then ist the result correct.
Can I have a acces to the string from the webview ?
Martin