1

我正在尝试使用 InAppBrowser for Cordova 与 Google 进行 oAuth,我需要检索当前 url 以存储访问令牌。我想知道是否有某个命令可以检索用户所在的当前 URL。我的代码:

window.open( authUri, { showLocationBar : false } );

window.open( authUri, { showLocationBar : false } ).addEventListener( 'loadstart', function() {
    if ( event.url.indexOf( "code=" ) != -1 )
    {
        alert( "hey" );
        var lel = URL;
    }
});

window.open( lel, { showLocationBar : false } ).addEventListener( 'loadstart', $this.onAuthUrlChange );
window.open( lel, { showLocationBar : false } ).addEventListener( 'loadstop', $this.onAuthClose );
4

1 回答 1

0

我遇到了同样的问题并使用类似的东西解决了

this.document.location.href
于 2015-08-12T21:27:59.487 回答