1. Go to this page and download the library: Download pouu69/kakao-api library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
` php
$code = $request->input()['code']; // $code 는 콜백 URL에 쿼리로 들어온 authorize_code 이다.
// 카카오 로그인 이후 발급 받은 `authorize_code` 로 수행한다.
$result = Kakao::postAccessToken($code);
if(($result['code'] < 200 || $result['code'] > 206)){
// 에러 발생
// $result['body']['error_description'] 에러메세지
}
if(!empty($result['contents']->access_token)){
$accessToken = $result['contents']->access_token;
$refreshToken = $result['contents']->refresh_token;
// 사용자 정보 가져오기
$credentials = Kakao::getCredential($accessToken);
//token 세션 저장( 본인에 맞게 수행 )
Session::put('kakao_access_token', $accessToken);
Session::put('kakao_refresh_token',$refreshToken);
// 여기서 로그인 작업이나, 사용자 DB 작업 수행
}
` php
// 올릴 사진들을 guzzle이 원하는 포맷에 맞게 만듭니다.
$imageUrl = []
$i = 0;
foreach($images as $imagePath){
$fileDir = // 이미지가 저장되어 있는 로컬 절대 경로
$fileName = // 이미지 이름
$file = [
'name' => 'file['.$i++.']',
'contents' => fopen($fileDir,'r'),
'filename' => $fileName
];
$imageUrl[] = $file;
}
try{
// 위에서 작업한 이미지를 넘기며, 이미지를 카카오에 업로드합니다.
$result = Kakao::postImageUpload($imageUrl, session()->get('kakao_access_token'));
return $this->response($result)['contents'];// 여기에 실제 업로드 할때 필요한 정보가 담겨있습니다. 또는 throw exception 됌
}catch(Exception $e){
throw new Exception($e->getMessage());
}
` php
try{
// request data 형식
$data = [
'image_url_list' => $imageUrlInfos,
'content' => '메세지 작성하기',
'permission' => // 포스팅 할 스토리를 전체 공개할지 친구 공개할지 여부. F : 친구에게만 공개, A : 전체 공개, M : 나만 보기 , 기본값은 A.
];
// 이제 최종 퍼블리싱 하기
$result = Kakao::postPhoto($data, session()->get('kakao_access_token'));
return $this->response($result);
}catch(Exception $e){
throw new Exception($e->getMessage());
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.