TitaniumMobileでBASIC認証を通すのに、HTTPCientのsetBasicCredentialsという関数が使える、という記述を時々見かけます。guides_network_httpclient - titanium-mobile-doc-jaとか。Titanium Mobileで開発するiPhone/Androidアプリにも載っています。 でもこれ、どうも今使えないっぽい。 var xhr = Titanium.Network.createHTTPClient(); xhr.setBasicCredentials('username', 'password'); xhr.onload = function() { Ti.API.info('xhr.onload'); }; xhr.onerror = function(e) { Ti.API.info('xhr.one