我可以使用图形api上传照片到facebook用户的相册,我可以添加新的帖子与图像网址到用户的墙。
问题是,如果图片url是一张已经上传到facebook的照片,那么add post graph api将返回fail,并显示以下错误:
FBCDN image is not allowed in stream
有没有办法添加带有之前已经上传到用户的facebook相册的照片url/object_id的墙上帖子?
我需要张贴一张照片(从相机拍摄)在用户的facebook墙与用户的位置。现在,facebook照片对象有一个名为的字段
object containing id and name of Page associated with this location, and a location field containing geographic information such as latitude, longitude, country, and other fields (fields will vary based on geography and availability of info
我正在为Facebook开发一个android应用程序。使用图形API,我可以轻松地发布文本状态,但是当我上传照片时,它会返回错误信息
(#100) The picture is not properly formatted
如果我使用相同的代码张贴到我的墙上,照片上传工作良好。
这是API的限制,还是有一种单独的方法将照片上传到一个组?
以下是我的代码:
Request photoRequest = Request.newUploadStagingResourceWithImageRequest(session, bitmap, new Request.Callback() {