Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to get photos from facebook using graph API. I have did a lot of search and study to find what is required to get that but I couldn't solve the issue. I am using Titanium Appcelerator to as a tool to develop the app and I need to access all the photos of a user from all albums. A lot of questions are asked about this on stackoverflow already but none of them answered my question. How would I do that. I have tried

"http://graph.facebook.com/" data[x].photo "/picture?access_tokem=" + Ti.Facebook.accessToken this to access photos, And following is my code.

Titanium.Facebook.requestWithGraphPath(
'me/photos', 
{
fields : 'id,name,photo'
}, 
'GET', 
function(graphResp) {
if(graphResp.success) {
    if(graphResp.result) {
        var data = JSON.parse(graphResp.result).data;
        for (x in data) {
            Ti.API.debug(JSON.stringify(data[x]));
            // IMAGE VIEW LOOP CREATION CODE GOES HERE
        }
    }
} else if(graphResp.cancelled) {
    alert("User Cancelled");
} else {
    Ti.API.debug(graphResp.result);
}

} );

Can anyone help me with this? Thanks in Advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.