Introduction to Google Sign-In for Websites

preview_player
Показать описание
Google Sign-In is a library that helps you implementing authentication/authorization using Google accounts to your app. In this video, we'll walk you through the concept of Google Sign-In and show you how to implement authentication on server less apps.

Рекомендации по теме
Комментарии
Автор

why is this different from the instructions on the google website? Is it an older version?

f
Автор

Hi,
very good explanation, however this is using the old framework, do you have a new video using the latest framework from google?
Thanks,
Chen

lincmls
Автор

I am currently working on a React Native Expo project, my question is will I have to initialization on the HTML page what you did ?

HealthHabitsHQ.
Автор

thank you for a great explanation. @Google Chrome Developers
do you have a video that shows what information google needs from me to approve me to use the sign in by google buttom?

AvivObergut
Автор

thanks! helped me a lot, and very clear and straightforward.Great work!

gjyfghhg
Автор

Hola, is possible to do this process Google Sign in, in a google sites? Thank you

fomemexico
Автор

Excellent video !!! so much valuable info in about 4 minutes

nathankrasney
Автор

This is perfect :D I also loved how google was fun and colorful in the cartoon xD

zerobb
Автор

In a way federated sign in is like using the same password across many sites. If the google account is compromised then all the other is also compromised.

manibharathy
Автор

Is there an official vuejs wrapper or reactjs wrapper for this api ?

fenshuajiang
Автор

Very clear and interesting, thanks. Useful links also!

PabloSebastianVelazco
Автор

Thanks, Aiji for this video, it is simple and understandable.

maksymkyryliuk
Автор

actual examples of the code in use would improve this greatly.

neilmannion
Автор

Hi google, instead of localhost, i want to run the sign in with google all over my LAN network. But sign in with google doesn't work when I try to enter IP address of my host machine and run the application. Is there any solution for it. IP changes dynamically, so i need a solution in such a way, I don't need to add IP address in javascript orgin frequently. I run my application in tomcat.

coderart__
Автор

Can I have question
Can I sign in Google to website
The website can get my password or emails ?

AbenezerMetekia
Автор

how to find gmail account creation date using javascrpit api

winwindemo
Автор

Parece bastante bueno. Me serviría muchísimo . tengo gente colgada todo el tiempo de mi vida y red

Ruteandohacialalibertad
Автор

Very clear and interesting, thanks. Useful links voice

babulahmed
Автор

OMG THANKS YOU SO MUCH I CAN'T DO ANY THING WITHOUT YOU :D

Cheese_Gamer-qgon
Автор

Hi Eiji, I use angularjs to implement google sign-in
function LoginController($scope, $location) {
var vm=this;
gapi.load('auth2', function () {
gapi.auth2.init(
{
client_id: '"***"
}
);
var GoogleAuth = gapi.auth2.getAuthInstance();
$scope.onLogInButtonClick = function () {
(response) {
$location.path('/main');
console.log(response);
});
};
});

but sometimes, It throw exception: "gapi is not defined" at line "gapi.load". How can I fix it?

nklvodoi