카카오로그인 연동 방식 변경

-oauth 테이블 삭제
-비밀번호 변경 기능 추가(카카오톡 나에게 보내기)
This commit is contained in:
2018-03-18 05:44:20 +09:00
parent bd26ee858c
commit 6130bd22cb
8 changed files with 149 additions and 39 deletions
+5 -1
View File
@@ -232,7 +232,11 @@ class Kakao_REST_API_Helper
}
public function talk_to_me_default($req){
return $this->request(TalkPath::$TALK_TO_ME_DEFAULT, json_encode($req), 'POST');
$params = [
'template_object' => json_encode($req)
];
return $this->request(Talk_Path::$TALK_TO_ME_DEFAULT, $params, 'POST');
}