Parse-sdk-ios-osx: Facebook login error, "The operation couldn鈥檛 be completed. (Com.facebook.sdk.core error 3.)"

Created on 13 Dec 2018  路  4Comments  路  Source: parse-community/Parse-SDK-iOS-OSX

I have a problem with FacebookUtils, when I login through the facebook

PFFacebookUtils.logInInBackground(withReadPermissions: ["public_profile", "email"]) { (user, error) in

I get an error
("The operation couldn鈥檛 be completed. (Com.facebook.sdk.core error 3.)")

How can I solve this problem?

pod versions
Parse (1.17.2)

FBSDKCoreKit (4.39.0)
FBSDKLoginKit (4.39.0)

Stale

Most helpful comment

Issue is solved in version 4.39.1
Here is the tracker for it https://github.com/facebook/facebook-swift-sdk/issues/298

All 4 comments

Apparently this is a bug on the FBSDKCoreKit and FBSDKLoginKit and the solution seems to be to downgrade to 4.38.0. Any idea how to do it?

https://stackoverflow.com/questions/35248412/ios-facebook-login-error-unknown-error-building-url-com-facebook-sdk-core-e

https://github.com/facebook/facebook-objc-sdk/commit/fe67bdb3f72a2e69422b2f609bc871c1dba2005a

Apparently this is a bug on the FBSDKCoreKit and FBSDKLoginKit and the solution seems to be to downgrade to 4.38.0. Any idea how to do it?

https://stackoverflow.com/questions/35248412/ios-facebook-login-error-unknown-error-building-url-com-facebook-sdk-core-e

facebook/facebook-objc-sdk@fe67bdb

Delete your Pods-Folder, the Podfile.lock and add the following Lines to your Podfile

pod 'FBSDKCoreKit', '~> 4.38.0'
pod 'FBSDKLoginKit', '~> 4.38.0'

Issue is solved in version 4.39.1
Here is the tracker for it https://github.com/facebook/facebook-swift-sdk/issues/298

This issue has been automatically marked as stale because it has not had recent activity. If you believe it should stay open, please let us know! As always, we encourage contributions, check out the Contributing Guide

Was this page helpful?
0 / 5 - 0 ratings