経由で FB でリンクを共有しようとしています。アプリを開くためのコールバック用にFBSDKShareLink
動的 URL を提供しています。content.contentURL
FB で共有すると、リンクは常にfb.me
コンテンツのタイトルとコンテンツの説明として表示されるようになりました。これを止める方法を教えてくれる人はいますか?
let content: FBSDKShareLinkContent = FBSDKShareLinkContent()
let userInfo : AnyObject = LocalStore.userDetails()!
let iosLink = responseDictionary?["fb_link"] as? String
let name = userInfo["name"] as? String
content.contentURL = NSURL(string: iosLink!)!
content.contentTitle = "click it"
content.contentDescription = "My Custom Description"
content.imageURL = NSURL(string: "http://weknowyourdreams.com/images/dog/dog-07.jpg")!
FBSDKShareDialog.showFromViewController(self, withContent: content, delegate: self)