javascript 使用javascript登录Gmail
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用javascript登录Gmail相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta name="google-signin-client_id" content="/*Client Id*/">
</head>
<body>
<div id="my-signin2"></div>
<script src="https://apis.google.com/js/platform.js?onload=renderButton" async defer></script>
<script>
function onSuccess(googleUser) {
var profile = googleUser.getBasicProfile();
console.log('ID: ' + profile.getId()); // Do not send to your backend! Use an ID token instead.
console.log('Name: ' + profile.getName());
console.log('Image URL: ' + profile.getImageUrl());
console.log('Email: ' + profile.getEmail()); // This is null if the 'email' scope is not present.
}
function onFailure(error) {
console.log(error);
}
function renderButton() {
gapi.signin2.render('my-signin2', {
'scope': 'profile email',
'width': 240,
'height': 50,
'longtitle': true,
'theme': 'Light',
'onsuccess': onSuccess,
'onfailure': onFailure
});
}
</script>
</body>
</html>
以上是关于javascript 使用javascript登录Gmail的主要内容,如果未能解决你的问题,请参考以下文章
使用javascript代码自动登录gmail
使用 javascript 登录 Twitter?
使用 cURL 和 JavaScript + Rest API 登录 Paypal
Javascript警报进入离子登录页面
利用 JavaScript SDK 部署网页版“Facebook 登录”
javascript 使用mocha登录会话测试