WEB2.0/프로그래밍
페이스북 프로필이미지 실제 경로 가져오기
나를찾는아이
2012. 9. 14. 11:58
728x90
반응형
페이스북의 프로필이미지는 아래와 같은 간결한 URL형태를 가지고 있습니다.
https://graph.facebook.com/페이스북ID/picture
여기서 아이디는 숫자로 구성된 ID 또는 내가 직접 설정한 ID둘다 가능합니다.
페이스북에서 위와 같은 경로를 입력하면
https://graph.facebook.com/spotlight21c/picture
이와 같은 실제경로로 redirect 됩니다.
https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash4/186565_1257874690_3151379_q.jpg
php를 통해 페이스북 프로필 이미지 실제 경로를 나타내는 코드 입니다.
유용하게 사용하시기 바래요~
<?php
$url = 'https://graph.facebook.com/spotlight21/picture';
$headers = get_headers($url, 1);
if (array_key_exists('Location', $headers))
{
echo $headers['Location'];
}
?>
아참 그리고 페이스북 큰 사진 가져오는 URL 형식은 아래와 같다는거~
728x90
반응형