开发者

Is there a way to add a photo to a Facebook Checkin via their API?

开发者 https://www.devze.com 2023-02-11 07:58 出处:网络
I\'m generating a check-in from my app via the checkins api: http://developers.facebook.com/docs/reference/api/checkin/

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");
0

精彩评论

暂无评论...
验证码 换一张
取 消