2014-09-27 36 views
0

登錄後要定向的頁面例如,指定將用戶(在登錄後)引導到signincallback()方法上的'login.php'的代碼是什麼?指定在使用google +

function signinCallback(authResult) 
{ 
    if (authResult['status']['signed_in']) 
     {---------------what to put here------------------} 

    else {console.log('Sign-in state: ' + authResult['error']); 
     } 
} 
+0

https://developer.mozilla.org/en-US/docs/Web/API/ window.location的 – abraham 2014-09-27 22:41:44

回答

0

確保它們在(有點像餅乾)登錄,然後調用:

document.location.assign("https://www.example.com/profile/profile_open_page.php"); 
相關問題