parsefacebookutils

ParsefacebookUtils returning wrong values in Parse

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-12 03:18:46
问题 for my android application i wanted to integrate a facebook login, so i did exactly what is here: https://github.com/ParsePlatform/IntegratingFacebookTutorial Everything seems to work fine however the values which are stored in the parse backend are not convenient, here is for example what i get after login with my facebook account: emailVerified:empty username:adGdJMxcCQCAo2..... authData: {"facebook":{"access_token":"CAAMBDxU3HgUBAMYQ8q2mnjDqeKBz2sw......","expiration_date":"...","id":

Parse Facebook logInInBackgroundWithReadPermissions (Swift)

我只是一个虾纸丫 提交于 2019-11-30 16:57:43
I have set both Parse (1.7.1) SDKs and Facebook(v4) SDKs successfully, set bridging header files and AppDelegate.swift. Now in my ViewController, I am trying to create a Facebook Login and I am trying to use the code given in 'Parse iOS Documentation - Facebook SignUp & Login' . PFFacebookUtils.logInInBackgroundWithReadPermissions(permissions, { (user: PFUser!, error: NSError!) -> Void in if let user = user { if user.isNew { println("User signed up and logged in through Facebook!") } else { println("User logged in through Facebook!") } } else { println("Uh oh. The user cancelled the Facebook

Parse Facebook logInInBackgroundWithReadPermissions (Swift)

扶醉桌前 提交于 2019-11-30 16:17:44
问题 I have set both Parse (1.7.1) SDKs and Facebook(v4) SDKs successfully, set bridging header files and AppDelegate.swift. Now in my ViewController, I am trying to create a Facebook Login and I am trying to use the code given in 'Parse iOS Documentation - Facebook SignUp & Login'. PFFacebookUtils.logInInBackgroundWithReadPermissions(permissions, { (user: PFUser!, error: NSError!) -> Void in if let user = user { if user.isNew { println("User signed up and logged in through Facebook!") } else {

PFFacebookUtils.initializeFacebookWithApplicationLaunchOptions(launchOptions) giving compilation error

╄→尐↘猪︶ㄣ 提交于 2019-11-26 22:09:31
问题 I'm trying to integrate facebook login in my parse application. I followed every step mentioned in parse tutorial. In the below code, I'm getting compilation error. func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. line1: Parse.setApplicationId("xxx", clientKey: "yyy") line2: PFFacebookUtils.initializeFacebookWithApplicationLaunchOptions(launchOptions) line3: