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 made a Facebook game for Windows 8 where users can connect to Facebook and share their scores.

When users close the game and later reopen it, I have their UserName and User ID cached; however, I get their image with the graph api url.

My problem occurs when users open my app when they are offline. I can display their name correctly, because it is cached, but I cannot display their image, because it is not cached. How can I cache their image in my WinJS app so that it is still available when they are offline?

Here is my code to show their image:

$('#FbUserExterno img').attr('src', 'https://graph.facebook.com/' + RS.getUserId() + '/picture');

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

At the point you are connected, download the image file and save it locally (using WinJs.xhr, for instance).

You can then use the ms-appdata:///local/ scheme for the image source pointing to the downloaded file in local storage.

Of course, you'll want to refresh the image in local storage at some frequency, perhaps re-downloading it when you detect you have a network connection.

share|improve this answer
Great! Do you know how can i detect if i have a network connection? – Bruno Croys Felthes Jan 16 at 12:32
1  
take a look at this Quickstart – Jim O'Neil Jan 17 at 1:15

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.