Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Questions relating to the parse.com hosted service API.

learn more… | top users | synonyms

0
votes
0answers
17 views

Log-in by fb in parse.com

i'm trying to implement the log-in by facebook in parse.com but happens this error: GET file://connect.facebook.net/en_US/all.js at line: .fjs.parentNode.insertBefore(js, fjs); Facebook request me a ...
1
vote
0answers
28 views

PFFacebookUtils logInWithPermissions:block loses permissions

I try to user Parse login using Facebook. Every time logInWithPermissions is used, the permissions are nil. The following code always produces the same output: [PFFacebookUtils ...
0
votes
0answers
33 views

Does parse support facebook 3.5 sdk?

I've recently upgraded my facebook sdk to 3.5. Now however I seem to be facing this constant error: Facebook error connect: Write Privacy is not specified. Please tap Cancel to return to ** and try ...
0
votes
2answers
103 views

Parse.com PFUser Linking twitter and facebook account?

I am using parse.com as backend of my application, it enables the user to login through his facebook or twitter account. Also it has the feature to link twitter/facebook to his pre-existing account. ...
2
votes
2answers
198 views

Parse.com and Facebook login, runs infinite loop

I updated both Parse and Facebook iOS SDKs to the latest versions, and when I try to login using Facebook my app crashes, and from the debugger I can see that it is calling 3-4 methods in an endless ...
0
votes
0answers
155 views

Facebook login using Parse not working

I am trying to use Parses SDK to make the single sign on for Facebook but when I press the login button I get this error: Uh oh. An error occurred: Error Domain=com.facebook.sdk Code=2 "The ...
0
votes
0answers
84 views

Replacing FB.login with Parse.FacebookUtils.logIn

I have been able to integrate the vanilla Facebook javascript API for login using the following pattern: After init, subscribe to the auth.authResponseChange event. Whenever the event fires, check ...
0
votes
3answers
85 views

forge.facebook.authorize returning incorrect Facebook token expiry time

I've been using forge.facebook.authorize() successfully for several months in my app to get FB auth tokens. However since a certain point last week I've been unable to validate any of the tokens ...
2
votes
1answer
146 views

NoClassDefFoundError when using Parse.com to login to Facebook

I am currently using parse.com as a backend solution for my Android app. I am trying to use Facebook to authenticate users and I'm currently experiencing the errors below. I have tried to add both ...
0
votes
1answer
142 views

Trouble Pushing to PFQueryTableViewController after Facebook Login

I log in successfully with Facebook. The Login view is a UIViewController. I can only get access to Parses' login feature by using @interface LoginViewController : UIViewController ...
0
votes
3answers
115 views

How do I share an object with another user using Parse with iOS?

I have dug through a few of the tutorials at parse.com and I don't have a problem with users creating objects and storing them in Parse. What I don't know how to do is passing an object to another ...
1
vote
1answer
134 views

Using Parse API on Android: Application is misconfigured for Facebook login

I am using Parse.com API to connect my application to Facebook and share some data. I have checked the Parse.initialize in my code, it has the correct keys. I have checked the ...
0
votes
0answers
138 views

How to switch users when using Facebook Connect on iOS through Parse?

1) First I use the Facebook Connect API to login (the Parse.com API is delegating to Facebook's API behind the scenes): 2) But it doesn't seem to give me a choice for how to login as. I'd like to ...
0
votes
2answers
239 views

Parse Facebook Dialog Delegate methods not being called

I'm using the Parse SDK to implement a Facebook apprequests dialog in my app. For all intents and purposes it just wraps the Facebook SDK, prefixing Facebook methods with PF_. I use this code to ...
0
votes
1answer
86 views

Parse.com Javascript logging out w/ facebook

I'm having trouble getting a logged in facebook user in my parse.com application to log out. What is wrong with the code below? function logOff() { function thisSuccess(e) { ...
2
votes
3answers
217 views

Can't create Facebook user with access token

I am writing a method which gets the facebook user records from my db on Parse and then recreates the records on StackMob. When I call createUserWithFacebookToken it returns this error: ...
1
vote
0answers
149 views

Parse Facebook dialog:andParams causes login screen

I have been using the Parse Facebook implementation for a while and now I am getting some weird behaviors after updating. I am logging in a user successfully using NSArray *permissions = [NSArray ...
0
votes
1answer
200 views

Node.js and Parse.com for Dynamic Opengraph tags

I have a JS wep app & Parse.com backend which I would like to hook up to Facebook using Opengraph actions. Problem is being a web app, it's not possible to manipulate the meta tags in such a way ...
0
votes
1answer
371 views

Facebook Login with Parse.com Fails

I'm getting a POST https://api.parse.com/1/users 400 (Bad Request) returned from the following Parse.Facebook.Utils.logIn request: FB.login(function(response) { if(response.status == "connected") ...
2
votes
3answers
4k views

Format Date as “yyyy-MM-dd'T'HH:mm:ss.SSS'Z'”

I need to format a date as yyyy-MM-dd'T'HH:mm:ss.SSS'Z' as specified by Parse's REST API for Facebook. I was wondering what the most lightweight solution to this would be.
1
vote
0answers
207 views

Facebook Login is not working on the device with parse.com SDK v1.1.12

I haven't any problems with FB login until now. After i updated to the newest SDK first i received an error in the FB app on the device with iOS 6 while login in. Now the when i tap facebook in the ...
0
votes
1answer
509 views

Node.js Passport deserializing Users returns 20+ indentical users

Everything seems to works. The request to Parse.com checks if the users exists and either creates it or retrieves it. I'm having two main problem. First, when the deserializeUser function is called it ...
0
votes
2answers
608 views

How to get share dialog box with parse.com and facebook 3.0 sdk

I can't seem to find information on how to open share dialog box with parse sdk which includes fb 3.0. I am able to login with facebook and actually found a way to post with out the dialog box but ...
0
votes
1answer
304 views

Parse.com and Facebook SDK issues

I'm trying to use Parse's version of the Facebook SDK, but for some reason none of the PF_FB objects/methods are showing up except for PF_FBRequest. For example, PF_FBRequestConnection isn't showing ...
0
votes
2answers
122 views

omniauth.auth data outside session_controller

Basically I used the omniauth gem on my ruby on rails website to authenticate the user. The authData field of parse.com Database stores the details of user. That works fine. I have been told to store ...
0
votes
1answer
88 views

facebook information for user revived after it is authenticated in session control

I am working with omniauth to sign in the user through facebook(facebook login). That happens in session controller. My backend database in handled by parse.com, basically it provides an authdata ...
2
votes
2answers
403 views

parse api remove 'you already authorized this app' after user authorized the app

Im using parse.com login controller to log users into facebook. if user authorized the app before he gets 'you already authorized this app' from facebook. anyone know how it can be solved ? the ...