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)
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://github.com/facebook/facebook-objc-sdk/commit/fe67bdb3f72a2e69422b2f609bc871c1dba2005a
Apparently this is a bug on the
FBSDKCoreKitandFBSDKLoginKitand the solution seems to be to downgrade to4.38.0. Any idea how to do it?
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
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