Hi, i need save facebook profile photo:
Titanium.Facebook.requestWithGraphPath('me/picture', {}, 'GET', function(e) { if (e.success) { // e.result include blob of picture var f = Titanium.Filesystem.getFile(Titanium.Filesystem.applicationDataDirectory,'fb.jpg'); f.write(e.result);picture exists (f.exists()==true) in the filesystem, but will not be displayed in ImageView in properties url or image, not even View in properties backgroundImage
value:
Titanium.Filesystem.applicationDataDirectory+'fb.jpg'
Please help :(
Your Answer
Think you can help? Login to answer this question!