Cordova inAppBrowser重定向错误:invalid_request

时间:2014-07-09 13:39:46

标签: cordova

我正在使用带有cordova的angularjs。我从带有$ http.get(“web_url”)的web api获取了一个url。然后我在inAppBrowser中打开返回的URL,这应该将我重定向到另一个页面。我已将返回的URL粘贴到我的浏览器中,并且工作正常。但是,在应用程序中,我收到以下错误,并且我没有被重定向error: invalid_request。我正在使用cordova 3.4.0。这是适用的代码:

        var ref = window.open(encodeURI(base_url+provider_url), '_blank',  'location=yes');

        ref.addEventListener('loadstart', function(event) { console.log('start: ' + event.url); });
        ref.addEventListener('loadstop', function(event) { console.log('stop: ' + event.url); });
        ref.addEventListener('loaderror', function(event) { console.log('error: ' + event.message); });
        ref.addEventListener('exit', function(event) { console.log(event.type); });

如果您需要其他信息,请与我们联系。你能看到什么问题吗?

1 个答案:

答案 0 :(得分:0)

可以在这里找一些解决方案。 https://github.com/AppGyver/steroids/issues/570