gpt4 book ai didi

ios - FBSDKShareLinkContent 没有深层链接到应用程序

转载 作者:可可西里 更新时间:2023-11-01 06:02:27 27 4
gpt4 key购买 nike

我正在使用 FBSDKShareLinkContent 显示一个对话框以共享到 Facebook 的链接。无论我使用什么链接(我什至尝试使用 https://google.com/ ),当在 Facebook 应用程序中点击帖子/链接时,我的应用程序都会启动。

但是,我想改为在 Web 浏览器或 FB 浏览器中加载链接(而不是让它启动我的应用程序或导航到应用程序商店)。无论如何要实现这一目标?我尝试了 FBSDKShareDialogModeFeedWebFBSDKShareDialogModeAutomatic

这是我当前的代码:

FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
content.contentURL = [NSURL URLWithString:@"https://google.com/"];

FBSDKShareDialog* dialog = [[FBSDKShareDialog alloc] init];
dialog.mode = FBSDKShareDialogModeFeedWeb;
dialog.shareContent = content;
dialog.fromViewController = self;
[dialog show];

最佳答案

将此添加到您的代码中:

FBSDKShareLinkContent *content1 = [[FBSDKShareLinkContent alloc] init];
content1.contentURL = [NSURL URLWithString:@"http://en.wikipedia.org/wiki/Facebook"];
content1.contentTitle=@"Share";
[FBSDKShareDialog showFromViewController:self withContent:content1 delegate:nil];

关于ios - FBSDKShareLinkContent 没有深层链接到应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40273758/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com