고객 입장에서:
auth2
init 함수를 사용하면 hosted_domain
매개 변수를 전달 하여 로그인 팝업에 나열된 계정을 hosted_domain
. https://developers.google.com/identity/sign-in/web/reference 의 문서에서이를 확인할 수 있습니다.
서버 측:
제한된 클라이언트 측 목록이 있더라도 id_token
지정한 호스트 된 도메인과 일치 하는지 확인해야 합니다. 일부 구현의 경우 이는 hd
토큰을 확인한 후 Google에서받은 속성을 확인하는 것을 의미 합니다.
전체 스택 예 :
웹 코드 :
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(); });
});
}
});
});
서버 코드 (googles Node.js 라이브러리 사용) :
Node.js를 사용하지 않는 경우 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();
});
});
};