Questions tagged [pffacebookutils]

28 questions
8
votes
5 answers

Use of unresolved identifier PFFacebookUtils

I've done all is mentioned here (https://www.parse.com/docs/ios_guide#fbusers/iOS) for implement in iOS the Facebook Login. The problem is that i have an compile error "Use of unresolved identifier PFFacebookUtils" near che…
Kobazzo
  • 564
  • 1
  • 7
  • 20
7
votes
3 answers

Parse login hang since Facebook 4.0.x with [PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:launchOptions] (semaphore_wait_slow trap)

Since updating Facebook to v4.0.x and the latest Parse libraries, my app is hanging, seemingly when trying to log in the user. My stack trace looks like this: I had a very similar problem previously, answered here: Parse crash when calling…
Smikey
  • 8,106
  • 3
  • 46
  • 74
5
votes
0 answers

PFFacebookUtils logInInBackgroundWithReadPermissions block not called

PFFacebookUtils logInInBackgroundWithReadPermissions block not called after update xcode7 and parse SDK to 1.8.5 and Facebook SDK 4.6 from here : https://developers.facebook.com/docs/ios/ios9 NSArray *permissions = [NSArray…
Roei Nadam
  • 1,780
  • 1
  • 15
  • 33
3
votes
1 answer

logInInBackgroundWithReadPermissions opens "You have already authorized MyApp" screen

I updated to ParseFacebookUtilsV4 (1.9.0) with FBSDKLoginKit (4.7.0)..(with IOS 9) so after calling "logInInBackgroundWithReadPermissions" [PFFacebookUtils logInInBackgroundWithReadPermissions:@[@"public_profile", @"email",@"user_friends"]…
DaNLtR
  • 561
  • 5
  • 21
3
votes
3 answers

PFFacebookUtils logInInBackgroundWithReadPermissions: block: opens Facebook app instead of using system account

I've upgraded to ParseFacebookUtilsV4 and I've updated my login code as such: [PFFacebookUtils logInInBackgroundWithReadPermissions:FACEBOOK_READ_PERMISSIONS block:^(PFUser *user, NSError *error) { ... }]; However, now my app switches to Facebook…
3
votes
2 answers

Why is the accesstoken not set by PFFacebookUtils logInInBackgroundWithReadPermissions method?

For reference: I am using the latest Facebook IOS SDK v4 and the latest Parse v1.7.4 and ParseFacebookUtilsV4 SDK. So I am using PFFacebookUtils loginInBackgroundWithReadPermissions:block: method to have the user login with Facebook credentials and…
malena
  • 798
  • 11
  • 26
1
vote
1 answer

How to link existing Parse User via FacebookUtil

I had tried a lot to achieve link existing parse user to Facebook. I'm using swift 3. But I can't find solution My Status is I have already account not linked Facebook. I want link my account via facebookUtils My app has "Sign In or SignUp…
Shawn Baek
  • 1,928
  • 3
  • 20
  • 34
1
vote
2 answers

New parse framework doesn't have PFFacebookUtils?

Guys I am in desperate need of help! All I want to do is have a login with Facebook and have that data uploaded to Parse. But the issue I am having is, when I use the old Parse framework, PFFacebookUtils works, but doesn't upload anything to Heroku…
1
vote
1 answer

FBSDKLoginManager works, PFFacebookUtils logInInBackgroundWithReadPermissions not

I implemented the login via Facebook with parse server. If I use this, I get user information correctly: FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; [login logInWithReadPermissions: @[@"public_profile",@"email"] …
Vins
  • 1,814
  • 4
  • 24
  • 40
1
vote
1 answer

PFFacebookUtils can't logout from Facebook

I know that this question has already been asked here, but nothing works for me. I can't logout from Facebook. No matter what I do I still see "You have already authorized AppName" screen. I tried: [[PFFacebookUtils facebookLoginManager]…
Andrey Chernukha
  • 21,488
  • 17
  • 97
  • 161
1
vote
2 answers

Type 'PFFacebookUtils' has no member 'session' on swift

I am trying integrate Facebook login using Parse, but the following code: var FBSession = PFFacebookUtils.session gives the error Type "PFFacebookUtils" has no member "session" I am using the latest Parse SDK and Facebook SDKs, is "session"…
1
vote
1 answer

Facebook sdk 4.6 and PFFacebookUtils 1.8.5 login open webview although Facebook app is install on My device

I update My Facebook sdks to 4.6 and Parse to 1.8.5 , and after that I notice that in iOS 7,8 in login the app is go to Facebook app for premmisions and in iOS 9 the app go to safari. And I try to add setLoginBehavior before …
Roei Nadam
  • 1,780
  • 1
  • 15
  • 33
1
vote
0 answers

Use of unresolved identified 'PFFacebookUtils'

Unable to import PFFacebookUtils in the project. Parse is working but not the ParseFacebookUtils. Below are more details, what am I missing here please? Error: My Bridging Header: I am using CocoaPods and FacebookSDK.framework has been downloaded…
user1406716
  • 9,565
  • 22
  • 96
  • 151
1
vote
1 answer

No known class method for selector 'logInInBackgroundWithReadPermissions:block:'

Im using PFFacebookUtils to set up user login with parse and facebook. I am using the code exactly from this link: https://github.com/ParsePlatform/ParseUI-iOS/wiki/Integrate-Login-with-Facebook Heres a look at my code: NSArray *permissionsArray =…
1
vote
1 answer

trying to use [pffacebookUtils logininbackgrounwithreadpermission], but get error about fbinternalutility validatescheme

I'm using [PFFacebookUtils loginInbackgroundWithReadPermission ... to log in my user. However, I received this error: Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[FBSDKInternalUtility validateURLSchemes]:…
1
2