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 getting photos from facebook through graph api with this call:

https://graph.facebook.com/[AlbumID]/photos

The links I get there for the - do they stay the same or do they change?

I am interested because I like to cache these links, but if they get updated, eg the CDN does some updates or reorganisations, then there would be issues. Thanks, Marc

share|improve this question

1 Answer

up vote 6 down vote accepted

The CDN URLs can change. You are better off caching the graph URL with the respective object ID, for example,

https://graph.facebook.com/98423808305/picture
share|improve this answer
yes, I agree. Storing the CDN URL would make the CDN useless... Thanks. – Marc Loeb Aug 12 '11 at 7:36
1  
any suggestions on what we can / should cache in order to show images without having to repeatedly request all photo data from facebook? – Nathan Labenz Jul 10 '12 at 23:23

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.