iOS アプリに Facebook 招待を実装する必要があります。以下の参照リンクをたどっています: https://developers.facebook.com/docs/app-invites/ios
以下のリンクに従ってアプリリンクを作成しました:
https://developers.facebook.com/docs/applinks
以下のエラーに直面しています:-
Error Domain=com.facebook.sdk.core Code=9 "The operation couldn’t be completed. (com.facebook.sdk.core error 9.)"
以下のFBSDKAppInviteDialogDelegateデリゲート メソッド
func appInviteDialog(appInviteDialog: FBSDKAppInviteDialog!, didFailWithError error: NSError!) {
println("didFailWithError: \(error)")
}
私のコードは次のとおりです。
@IBAction func btnInviteClicked(sender: UIBarButtonItem) {
var content: FBSDKAppInviteContent = FBSDKAppInviteContent()
content.appLinkURL = NSURL(string: "https://fb.me/MyFacebookAppLinkURL")
//Optional
content.appInvitePreviewImageURL = NSURL(string: "AnyImageURL")
FBSDKAppInviteDialog.showWithContent(content, delegate: self)
}
Pls は、招待ポップアップを表示して正常に動作するように、解決策を提案します。
前もって感謝します。