Does anyone know how to post an image to a users timeline with a message?
Right now i am trying this aproach with no luck:
Bundle params = new Bundle();
String name = preference.getString("user_name", "");
params.putString("name", name + " achieved a new score in"
+ " Level: " + pLevel + " Score: " + pRecord + "!"
+ "Come join play!");
params.putString("caption", "Block Switcher");
params.putString("description",
"Change to the same color and shape to get through the gate!");
// params.putString("link", "www.google.com");
if (b2 == null) {
Log.e("Bitmap", "Is null");
}
//b2 is my bitmap i am trying to post with the message above
params.putParcelable("picture", b2);
Does anyone know how to do this?