FB.api('me/photos', 'post',
{
url:"https://appharbor.com/assets/images/stackoverflow-logo.png",
}, function (response){
console.log(response);
arr[i] = response.id;
console.log(arr[i]);
i++;
});
photo-id 는 다음과 같은 방법으로 구하였으나..
album-id는 어떻게 구해야 할지 모르겠습니다..
Field | 설명 |
---|---|
numeric string |
The photo ID
|
|
The album this photo is in |
FB.api('me/photos', {fields:'album'}, function(respose){
console.log(response);
});
로 호출하였지만 album-id값은 구해지지 않네요..
궁극적으로는 담벼락 작성시에 사용자의 앨범에 있는 사진을 여러장 불러와서 글과 함께 게시하는 것이 목적인 상황입니다..
답변 부탁드립니다!
/{user_id}/albums API를 사용하시면 앨범을 가져오실 수 있을겁니다.
GET /me/albums 해보세요.
자세한건 페이스북 그래프 API 문서를 참고해수세요.
https://developers.facebook.com/docs/graph-api/reference/user/albums/
참고로 API에서 가져올땐 GET, 업데이트 하려면 POST 입니다.
자세한건 REST API 사용법을 구글에서 찾아봐보세요^^