• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 如何使用 URLScheme 在 facebook 或 google 上分享帖子

[复制链接]
菜鸟教程小白 发表于 2022-12-11 19:43:11 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我想在 facebook 上分享一个 HTML 链接,而无需安装 SDK,例如 WhatsApp 或 twitter。我正在使用以下代码在 facebook 上分享链接。但我想在没有打开 Safari 浏览器的情况下将帖子分享到 Direct 应用程序。 请告诉我这是否可能。我已经搜索了很多但没有找到任何解决方案。

//For share twitter

let urlWhats = "twitter://post?message=\(fileURL)"
let urlString = urlWhats.addingPercentEncoding(withAllowedCharacters: NSCharacterSet.urlQueryAllowed)
let whatsappURL = URL(string: urlString!)
if UIApplication.shared.canOpenURL(whatsappURL!)
{
    UIApplication.shared.open(whatsappURL!, options: [:], completionHandler: nil)
}


//For Facebook
let shareURL = "https://www.facebook.com/sharer/sharer.php?u=" + url

if let url = URL(string:shareURL)
{
    let vc = SFSafariViewController(url: url, entersReaderIfAvailable: true)
    vc.delegate=self
    present(vc, animated: true)
}

提前致谢



Best Answer-推荐答案


要在 FB 中分享,请使用“FacebookShare”

import FBSDKShareKit

class yourViewController: UIViewController {

func shareContentInFB()  {


let content = FBSDKShareLinkContent()

        content.contentURL =  URL(string: "http://yourURL/")
        content.quote = "Hey !!!!"
        let dialog : FBSDKShareDialog = FBSDKShareDialog()
        dialog.fromViewController = self
        dialog.shareContent = content
        dialog.mode = FBSDKShareDialogMode.automatic
        dialog.show()
     }
}

你不能使用这个在 fb 中预填充文本,如果你必须这样做,那么使用 Fb graph API

关于ios - 如何使用 URLScheme 在 facebook 或 google 上分享帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48662440/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap