我正在网站上实施google登录,并且使用标准的SVG按钮,不会显示“ G” google徽标。有没有人对此有任何问题。我正在使用文档中的标准代码。我不想打开他们的自定义PNG按钮,但我没有选择。
<div id="my-signin2"></div>
<script>
function onSuccess(user) {
var profile = user.getBasicProfile();
//console.log('ID: ' + profile.getId());
//console.log('Name: ' + profile.getGivenName());
//console.log('Name: ' + profile.getFamilyName());
//console.log('Email: ' + profile.getEmail());
//console.log(user.getAuthResponse().id_token);
validateGoogleSignin (profile.getEmail(), user.getAuthResponse().id_token, profile.getId(), profile.getGivenName(), profile.getFamilyName(), "", "login");
}
function onFailure(error) {
console.log(error);
}
function renderButton() {
gapi.signin2.render('my-signin2', {
'scope': 'profile',
'width': 240,
'height': 50,
'longtitle': true,
'theme': 'dark',
'onsuccess': onSuccess,
'onfailure': onFailure
});
}
</script>
<script src="https://apis.google.com/js/platform.js?onload=renderButton" async defer></script>