I am trying to download a list of jpg images. I was able to do this for a long time, however my work place has decided to change the web address of the pics. Before I did not have to login to view pics but now I do.
If I use Internet Explorer or Chrome, once logged in to the server, I can view all the pics I want and go straight to the address of any pic. just by changing the name of the jpg file:(
https://myworkserver.com/web/Photo/123456.jpg)
For AppInventor, I can save my username and password in html and login using a script with webviewer. However when I use the Web Get I do not get the jpg file to download.
When I use the Web Get, I do get a file to save with the correct name... 123456.jpg However, it is not a jpg file and this is the contents of that file:
<html>
<head>
<META
HTTP-EQUIV="expires" CONTENT="0">
</head>
<body>
<form method="POST"
enctype="application/x-www-form-urlencoded"
action="/nidp/idff/sso?id=6&sid=0&option=credential&sid=0"></form>
<script
language="JavaScript">
<!--
document.forms[0].submit();
-->
</script>
</body>
</html>
Can anyone tell me why I'm getting this html back and not the jpg file? Any Suggestions?
I made a simple apk just do demonstrate my problem...