[React] 소셜 로그인 API
네이버 const { naver } = window; const location = useLocation(); const NAVER_CALLBACK_URL = 'NAVER_CALLBACK_URL 넣어주세요.'; const NAVER_CLIENT_ID = '클라이언트 ID'; const initializeNaverLogin = () => { const naverLogin = new naver.LoginWithNaverId({ clientId: NAVER_CLIENT_ID, callbackUrl: NAVER_CALLBACK_URL, isPopup: false, loginButton: { color: 'white', type: 1, height: '47' }, }); naverLogin.init(); }; c..
2021.07.06