简体   繁体   中英

FBwebdialogs, not showing on ios sdk - swift

Anyone else getting this error:

Error Domain=WebKitErrorDomain Code=101 "The operation couldn’t be completed. (WebKitErrorDomain error 101.)"

when using:

FBWebDialogs.presentDialogModallyWithSession(nil, dialog: "Share this", parameters: ["Sharing Tutorial": "name", "Build Great app": "Caption", "Users to share": "description", "http://google.ca":"link", "http://i.forbesimg.com/media/lists/companies/google_416x416.jpg": "picture"], handler: {
                result, resultURL, error in
                if (error != nil){
                    println("error publishing \(error.description)")
                } else {
                    if (result == FBWebDialogResult.DialogNotCompleted){
                        println("user cancelled")
                    } else {
                        println("very good job")
                    }
                }

Not really sure why this is happening. Any help is greatly appreciated! Thanks SO

In swift, doesn't the key come first? So your parameter dictionary is backwards.

["name": "Sharing Tutorial", "caption": "Build Great app", "description": "Users to share", "link": "http://google.ca", "picture": "http://i.forbesimg.com/media/lists/companies/google_416x416.jpg"]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM