페이스북 로직을 호출할 때 초기화시켜주고, 개발용 정보를 넣어주는 부분 // 로그인을 했을때 응답부분 체크로 실패인지 아니면 로그인했는지 여부를 확인 가능. FB.login(function(response) { if (response.status === 'connected') { // Logged into your webpage and Facebook. } else { // The person is not logged into your webpage or we are unable to tell. } }); // 로그아웃 FB.logout(function(response) { // Person is now logged out }); // 로그인 상태 체크 FB.getLoginStatus(function(r..