0

我们如何在 phoneGap 视图中打开具有基本身份验证的外部站点 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 功能,如果有其他方法可以让我继续。

4

1 回答 1

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=".*"/>
于 2012-12-24T21:25:22.670 回答