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