Online computer courses, code, programming tutorial and sidebar information for monitoring Canadian S&P/TSX index. Build friendship and networking. Welcome to visit my blogs often!!! I also have two other sites: YouTube Channel and Google site.
Adsense
Popular Posts
- How to blend adsense inside your post?
- Formatting my post
- PHPWind-- A PHP forum script applcaition in China
- Install PHPMailer 5.2.4 and use smtp gmail
- Datatable export excel wraptext and newline
- Set up a child account and set screen time limit in Windows 8
- Sweet Alert JS library - beautiful replacement of JavaScript Alert
- phpexcel toggle expand and hide column in EXCEL and summary
- Promote your Forum/Blog/Website via major search Engines
- PHP: add a download as pdf file button in report page
Wednesday, October 31, 2012
Google account logout script in Google application
Gmail logout link:
https://www.google.com/accounts/Logout
or
https://mail.google.com/mail/u/0/?logout&hl=en
Google account logout link:
https://mail.google.com/mail/?logout&hl=en
JS script:
<script type="text/javascript">
popup1=window.open("https://mail.google.com/mail/?logout&hl=en",'','width=600,height=400');
</script>
can be used to logout Gmail account.
But I do not like the popup window. I used Google oauth 2.0 to login my Google calendar application. When users login the Google account in popup window, they may think they login in oauth 2.0 in my Google calendar application.
So I need to hide the logout popup window. If users need to login, they should go to my login button using oauth 2.0.
After I added popup1.close(); the popup window is closed, but users are not logged out.
<script type="text/javascript">
popup1=window.open("https://mail.google.com/mail/?logout&hl=en",'','width=600,height=400');
popup1.close();
</script>
Using Iframe, finally the following script logged out the Google account without popup new window.
<script type="text/javascript">
document.getElementById('myIFrame').src='https://www.google.com/accounts/Logout';
timeOut();
</script>
<iframe id="myIFrame" src="" style='display:none;' >
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment