Flex 3/JS - 打开 sqeezebox 时出现 407 错误

发布于 2024-10-15 03:49:46 字数 885 浏览 6 评论 0原文

我需要使用挤压盒(与 mootools 1.2.4 结合使用)打开链接。
因此,我创建了一个 test.js (其中包含一个打开挤压盒的函数)、一个 Test.mxml 应用程序(包含一个调用 js 函数的按钮),并在 html 页面中添加了所有脚本。

test.js:

function openSqueezeBox(url){

    alert("Tentative d'ouverture de: " + url);
    SqueezeBox.initialize();
    SqueezeBox.open(url);

};

Test.mxml:

<mx:Script>
    <![CDATA[
        private function btnHandler1(e:MouseEvent):void{
            ExternalInterface.call("openSqueezeBox", 'http://www.google.com');
        }
    ]]>
</mx:Script>

<mx:HBox>
    <mx:Button label="google" click="btnHandler1(event)"/>
</mx:HBox>

启动应用程序并单击按钮时,我确实收到了警报窗口。然而,挤压盒没有打开。我收到 407 错误:需要代理身份验证。
我确实在我的工作场所中使用了代理,但是该应用程序是在已经经过身份验证的浏览器窗口中启动的...

我现在不知道该怎么做才能让它工作>_< 因此,如果有人能启发我,我将非常感激 =)

非常感谢您的时间 ;)
问候,
BS_C3

I need to open a link using a squeezebox (in combination with the mootools 1.2.4).
So, I've created a test.js (which contains a function to open a squeezebox), a Test.mxml application (containing a button that calls the js function) and I added all the scripts in the html page.

test.js:

function openSqueezeBox(url){

    alert("Tentative d'ouverture de: " + url);
    SqueezeBox.initialize();
    SqueezeBox.open(url);

};

Test.mxml:

<mx:Script>
    <![CDATA[
        private function btnHandler1(e:MouseEvent):void{
            ExternalInterface.call("openSqueezeBox", 'http://www.google.com');
        }
    ]]>
</mx:Script>

<mx:HBox>
    <mx:Button label="google" click="btnHandler1(event)"/>
</mx:HBox>

When launching the application and clicking the button, I do get the alert window. However, the squeezebox is not opening. I get a 407 error: proxy authentication required.
I am indeed behind a proxy in my workplace, however the application is launched in a browser window that's already authenticated...

I do not really now what to do to get it work >_<
So if anyone can enlighten me, it'd be really appreciated =)

Thanks a lot for your time ;)
Regards,
BS_C3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安穩 2024-10-22 03:49:46

外部页面在 IFrame 中加载。您可以尝试在SB中加载图像或普通元素,看看是否会抛出相同的错误。

External pages are loaded in an IFrame. You can try to load images or normal elements in the SB and see if it throws the same error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文