有没有办法通过 API 将照片添加到 Facebook Checkin?

发布于 2024-10-18 06:25:56 字数 231 浏览 0 评论 0原文

我正在通过 checkins api 从我的应用程序生成签到: http://developers.facebook.com/docs/reference/api/checkin/

但我看不出有什么方法可以附加照片。有相关的 API 吗?

I'm generating a check-in from my app via the checkins api:
http://developers.facebook.com/docs/reference/api/checkin/

But I dont see any way to attach a photo. Is there an API for that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

断桥再见 2024-10-25 06:25:56

您可以添加图片包,但只有当您指向 URL 而不是字节数组时它才有效。我不确定这是否是一个限制。

Bundle bundle = new Bundle();
bundle.putString("picture", "http://www.somewhere.com/picture.jpg");

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");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文