iPhone Facebook 应用程序在 iOS 应用程序发布的墙上帖子上显示应用程序名称时不显示链接

发布于 2024-12-15 22:18:45 字数 694 浏览 2 评论 0原文

我编写了一个 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文