如何上传相册中的照片并同时为 Facebook 新用户创建动态
我想将照片发布到 Facebook,并同时为我发布的照片创建一个 feed。
当我将照片发布到墙上时它可以工作,但是当我发布到相册时,它会在第一次使用照片创建一个提要。之后,它只创建一条短信,内容为“bla bla bla 在 XXX 相册中发布照片”。
问题是这样的: 当用户是 Facebook 的新用户时,他的墙是不存在的。墙将在用户在网站上发布带有照片的提要后创建。
问题: 那么,此时如何为此类用户发布照片并同时创建 feed 呢?
I want to post photos into facebook, and also create a feed for the photo I posted at the same time.
It works when I post photo to the wall, but when I posted to the album, it will create a feed with the photo on the first time. After that, it only create a text message says "bla bla bla post a photo in XXX album".
Here is the problem:
when user is new for facebook, his wall is non-exsist.The wall will be created after user post a feed with photo on website.
Question:
So, at this time, how can I post photo for such users and create a feed at the same time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加图片时,您可以使用响应来广告图片。分享图片。
本示例中的场景 2 展示了如何执行此操作并使用 PHP 获取响应。
https://developers.facebook.com/blog/post/498/
这样响应你可以创建一个提要对话框:
http://developers.facebook.com/docs/reference/dialogs/feed/
并使用照片上传的响应将图像的 URL 放在一起。
如果您在显示图像时遇到问题,您可能需要使用代理来加载它。在 Feed 帖子中添加来自其 CDN 的图像时,Facebook 有时会给您带来麻烦。
When you add a picture you can use the response to ad the picture. share the picture.
Scenario 2 in this example shows how to do so and get the repsons with PHP.
https://developers.facebook.com/blog/post/498/
With that response you could create a feed dialog:
http://developers.facebook.com/docs/reference/dialogs/feed/
And put together the URL for the image using the response from the photo upload.
If you run into trouble showing the image, you might need to use a proxy to load it. Facebook sometimes gives you trouble when adding an image that is comming from their CDN in a feed post.