카카오톡 로그인 코드 주위치좀 알려주세요
관련링크
http://12
4회 연결
본문
카카오톡 로그인 코드 주위치좀 알려주세요
답변 1
해당 파일 위치는 아래에서 수정하시면됩니다. (로그인 정보)
/bbs/login_check.php
해당 파일에서
if(function_exists('social_is_login_check')){
$is_social_login = social_is_login_check();
//패스워드를 체크할건지 결정합니다.
//소셜로그인일때는 체크하지 않고, 계정을 연결할때는 체크합니다.
$is_social_password_check = social_is_login_password_check($mb_id);
}
$is_need_not_password = run_replace('login_check_need_not_password', $is_social_password_check, $mb_id, $mb_password, $mb, $is_social_login);
이부분입니다.
여기서 해당 함수을 호출하는데..
/plugin/socia/includes/functions.php 를 참고 해보시기 바랍니다.
ction social_session_exists_check(){
$provider_name = social_get_request_provider();
if(!$provider_name){
return false;
}
if( $provider_name && isset($_SESSION['HA::STORE']['hauth_session.'.strtolower($provider_name).'.is_logged_in']) && !empty($_SESSION['sl_userprofile'][$provider_name]) ){
return json_decode($_SESSION['sl_userprofile'][$provider_name]);
}
return false;
}
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.