我正在使用 FBSDKShareLinkContent 使用 FBSDKShareKit 框架共享 Facebook 帖子。我正在设置内容的 imageURL 以加载要共享的帖子的图像。问题是,当我在移动互联网/3G 连接上共享帖子时,链接的图像没有加载和共享在帖子上。同时,在 Wifi 连接上共享链接时它工作正常。为了进一步说明,请参考下面的截图:
截图: http: //i.imgur.com/S2Z4Ddi.png ?1
我很抱歉,由于我的声誉,我还不能发布图片。
我正在使用以下代码来制作和分享内容。
let content:FBSDKShareLinkContent = FBSDKShareLinkContent()
content.contentURL = NSURL(string: linkURL)
content.contentTitle = nsTitle as! String
content.contentDescription = nsDesc as! String
content.imageURL = NSURL(string: imageURL)
let button:FBSDKShareButton = FBSDKShareButton()
button.frame = CGRectMake(0, 0, 0, 0)
button.shareContent = content
button.sendActionsForControlEvents(UIControlEvents.TouchUpInside)
有任何想法吗?
提前致谢。