Ashish Naik

Results 45 comments of Ashish Naik

I haven't tested this but removed all non-essential part. ``` import Parse func loginWithFacebook() { PFFacebookUtils.logInInBackground(withReadPermissions: facebookPermissions) { (loggedInUser: PFUser?, error: Error?) in if error == nil && loggedInUser !=...

tried saving loggedInUser but still failed with error 206. I had raised in iOS SDK [1492](https://github.com/parse-community/Parse-SDK-iOS-OSX/issues/1492) Can you tell me why my verbose setting doesn't work?

I add some seed values to newly created user. i added those to the code below. ``` func saveNewUserToParse(for newUser: PFUser, socialId: String?, loginProvider: String?, callback: @escaping (String, NSError?) ->...

i guess this is server issue. I have tried fixing the code and it works. Pls read the issue i had created 1492 specifically from https://github.com/parse-community/Parse-SDK-iOS-OSX/issues/1492#issuecomment-614468661 onward. have also explained...

i tried to debug further by stripping down those methods. Somehow setting email attribute causes the error 206. Earlier i had `loggedInUser!["email"] = email` which i corrected to `loggedInUser!.email =...