0
基本身份驗證我試圖連接到需要基本身份驗證的第三方供應商。我基本上需要下載html/js/css並在我的網站上查看內容。我可以使用下面的代碼連接到該網站。問題是下面的內容引用了與其他域相關的js和css,並且它們本身也需要基本認證。我試圖將'resolveUrl'設置爲true,這似乎是正確的步驟,但我無法通過基本身份驗證塊。我感謝所有可以幫助我獲得的幫助。ColdFusion的
<cfscript>
httpService = new http();
httpService.setURL("https://example.com");
httpService.setMethod("GET");
httpService.setUsername("someusername");
httpService.setPassword("somepassword");
httpService.setResolveUrl(true);
prefix = httpService.send().getPrefix();
fileContent = prefix.fileContent;
writeOutput(fileContent);
</cfscript>