Is it possible to checkin with a picture on the device?
I tried using "picture" bundle, but it only works if I point to a URL, not working if I use a byte array. The picture is just not shown on the wall if I use byte array.
Working: bundle.putString("picture", "http://www.somewhere.com/picture.jpg");
Not working: bundle.putByteArray("picture", imageByteArray[]);
Bundle bundle = new Bundle();
bundle.putByteArray("picture", imageByteArray[]); // load from device
bundle.putString("message", "The offee is just meh.");
bundle.putString("place", "my place id");
bundle.putString("coordinates", "my coordinates");
bundle.putString("access_token", mFacebook.getAccessToken());
mAsyncRunner.request("me/checkins", bundle, "POST", new CheckinListener(), null);