I'm trying to open a web page that needs an authentication through
Ti.Platform.openURL(rowdata.test)
but sadly the log in message box that allows the user to enter username and PWD didn't open and an error message appear " HTTP Error 401.2 unauthorized"
I just want it to be opened normally as it is in the laptop -- A message box that ask the user to enter username and password and then open the page --
How can I open it on android titanium?
Thanks
I try this ..but the same :(
var xhr = Ti.Network.createHTTPClient();
xhr.open('GET', URL);
authstr = Titanium.Utils.base64encode(username + ':' + pwd);
xhr.setRequestHeader('Authorization', 'Basic ' + authstr);
xhr.send();
Ti.Platform.openURL(url);