Reputation: 19
I have a problem with Feed post Picture, we decided to change our (android native) FB App icon, so we changed this icon at all occurrences in FB app settings, and we changed the picture on ftp server(on which we refferenced when posting feed from app).
But when I post feed from app (in the feed dialog there is a correct picture), on wall in browser there is wrong(old) picture, weird is when I check my wall from katana(facebook android app), there is a correct picture. Size of picture is 512x512 and it's png format. I'm talking about picture besides the feed (not small icon under feed)
Sample of feed post:
...
Bundle parameters = new Bundle();
parameters.putString("picture", path_tou_our_icon_on_ftp_server_in_png_fromat);
parameters.putString("name", facebookMsgName);
parameters.putString("caption", facebookMsgCaption);
parameters.putString("description", facebook_message);
parameters.putString("link", "http://bit.ly/....");
facebook.dialog(mInstance, "feed", parameters,....
Upvotes: 1
Views: 562
Reputation: 4561
Add "?cache=" + System.currentTimeMillis();
to your image URL posted to FB.
Upvotes: 1
Reputation: 15457
The reason for this is because facebook are probably caching your image. There are two solutions:
Upvotes: 0