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
