İstemci Tarafı:
auth2
İnit işlevini kullanarak, hosted_domain
oturum açma açılır penceresinde listelenen hesapları sizinle eşleşenlerle sınırlandırmak için parametreyi iletebilirsiniz hosted_domain
. Bunu buradaki belgelerde görebilirsiniz: https://developers.google.com/identity/sign-in/web/reference
Sunucu Tarafı:
Kısıtlı bir istemci tarafı listesiyle bile, id_token
belirttiğiniz barındırılan alanla eşleştiğini doğrulamanız gerekecektir . Bazı uygulamalar için bu hd
, jetonu doğruladıktan sonra google'dan aldığınız özniteliğin kontrol edilmesi anlamına gelir .
Tam Yığın Örneği:
Web Kodu:
gapi.load('auth2', function () {
var auth2 = gapi.auth2.init({
client_id: "your-client-id.apps.googleusercontent.com",
hosted_domain: 'your-special-domain.com'
});
auth2.attachClickHandler(yourButtonElement, {});
auth2.currentUser.listen(function (user) {
if (user && user.isSignedIn()) {
validateTokenOnYourServer(user.getAuthResponse().id_token)
.then(function () {
console.log('yay');
})
.catch(function (err) {
auth2.then(function() { auth2.signOut(); });
});
}
});
});
Sunucu Kodu (googles Node.js kitaplığı kullanılarak):
Node.js kullanmıyorsanız burada diğer örnekleri görebilirsiniz: https://developers.google.com/identity/sign-in/web/backend-auth
const GoogleAuth = require('google-auth-library');
const Auth = new GoogleAuth();
const authData = JSON.parse(fs.readFileSync(your_auth_creds_json_file));
const oauth = new Auth.OAuth2(authData.web.client_id, authData.web.client_secret);
const acceptableISSs = new Set(
['accounts.google.com', 'https://accounts.google.com']
);
const validateToken = (token) => {
return new Promise((resolve, reject) => {
if (!token) {
reject();
}
oauth.verifyIdToken(token, null, (err, ticket) => {
if (err) {
return reject(err);
}
const payload = ticket.getPayload();
const tokenIsOK = payload &&
payload.aud === authData.web.client_id &&
new Date(payload.exp * 1000) > new Date() &&
acceptableISSs.has(payload.iss) &&
payload.hd === 'your-special-domain.com';
return tokenIsOK ? resolve() : reject();
});
});
};