Смысл в том, чтобы пользователь входил в свою учетную запись Google, а затем всплывал тост с надписью: «Привет, ИМЯ!».Тем не менее, тост не появляется;Я проверил консоль, и она пуста!Вот код, на который я ссылаюсь:
$().ready(function(){
function onSignIn(googleUser) {
// Useful data for your client-side scripts:
var profile = googleUser.getBasicProfile();
console.log("ID: " + profile.getId()); // Don't send this directly to your server!
console.log('Full Name: ' + profile.getName());
console.log('Given Name: ' + profile.getGivenName());
console.log('Family Name: ' + profile.getFamilyName());
console.log("Image URL: " + profile.getImageUrl());
console.log("Email: " + profile.getEmail());
// The ID token you need to pass to your backend:
var id_token = googleUser.getAuthResponse().id_token;
console.log("ID Token: " + id_token);
}
toastr.info('Hey there, '+profile.getName());
});
Цель: Вот код: https://codepen.io/Refath/pen/moEmqr?editors=0010