我正在使用带有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); });
如果您需要其他信息,请与我们联系。你能看到什么问题吗?