iPhone Facebook 应用程序在 iOS 应用程序发布的墙上帖子上显示应用程序名称时不显示链接
我编写了一个 iPhone 应用程序,其中包含与 Facebook 共享图像的功能。它使用以下代码将图像发布到用户墙上。
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img, @"picture",
photoItem.caption == nil ? @"" :
photoItem.caption,@"name", nil];
[facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
它将照片毫无问题地贴在墙上。在台式计算机上使用 Facebook 查看墙时,应用程序名称是一个链接,可将您带到 Facebook 应用程序页面。
在 iPhone 或 Android facebook 应用程序上查看同一帖子时,应用程序名称不再是链接。
我做错了什么吗?这是一个错误还是设计使然?
I have written an iPhone app that includes a feature to share images with facebook. It uses the following code to post images to the users wall.
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img, @"picture",
photoItem.caption == nil ? @"" :
photoItem.caption,@"name", nil];
[facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
It posts the photo up on the wall with no problems. When viewing the wall with Facebook on a desktop computer, the app name is a link that takes you to the facebook app page.
When viewing the same posting on the iPhone or Android facebook app, the app name is no longer a link.
Am I doing something wrong? Is this a bug or by design?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论