사용자 정보를 받아오는 과정에서 에러가 납니다.
function getUserProfile()
{
// ask kakao api for user infos
$data = $this->api->api( "user/me" );
if ( ! isset( $data->id ) || isset( $data->error ) ){
throw new Exception( "User profile request failed! {$this->providerId} returned an invalid response.", 6 );
}
$this->user->profile->identifier = @ $data->id;
$this->user->profile->displayName = @ $data->properties->nickname;
$this->user->profile->photoURL = @ $data->properties->thumbnail_image;
return $this->user->profile;
}
이러한 함수인데요… 카카오에서 제공하는 response를 모두 받아야 등록이 되는걸까요?
정확히는 $data = $this->api->api( “user/me” ); 이 줄에서 에러가 납니다.
또한 이 api를 사용하려는데 http, https 모두 사용이 가능한지요?