我们如何在phoneGap View中打开具有基本Auth的外部网站URL?
super.loadUrl("https://google.com"); //it works
super.loadUrl("https://xyz.com"); //this site has Basic Auth, it's not working & it is not giving authentication challenge (popup for credentials)
我们如何传递凭据?现在我没有使用任何phoneGap功能,如果有任何其他方法可以让我继续。
答案 0 :(得分:0)
试试这个: 编辑“res”文件夹中的“config.xml”文件,并替换以下行代替
<access origin="http://127.0.0.1*"/>
<access origin="https://xyz.com" />
<access origin="https://xyz.com" subdomains="true" />
<access origin=".*"/>