카카오톡 로그인 서비스 장애 또는 정보가 올바르지 않습니다 문제
본문
카카오톡 로그인 할때
서비스 장애 또는 정보가 올바르지 않습니다
라고 팝업창이 뜹니다.
검색 결과
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->profile_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '.$this->access_token));
$json = curl_exec($ch);
curl_close($ch);
if($json)
$this->profile = json_decode($json);
라고 해서 적용해봤는데 동일한 오류가 뜹니다.
답변 1
카카오톡 버전이 바뀌면서 문제가 발생되는 부분인듯 합니다.
https://github.com/gnuboard/gnuboard5/commit/e82ebd7adac58bef4a2a4f6f806e53af378b13e2
참고 주소를 확인하셔서 반영해 보세요
답변을 작성하시기 전에 로그인 해주세요.