I'm generating a check-in from my app via the checkins api: http://developers.facebook.com/docs/reference/api/checkin/
But I do开发者_运维问答nt see any way to attach a photo. Is there an API for that?
you can add a picture bundle, but it only works if you point to a URL, not a byte array. I'm not sure if it's a limitation.
Bundle bundle = new Bundle();
bundle.putString("picture", "http://www.somewhere.com/picture.jpg");
精彩评论