我正在尝试使用 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 );