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") {
// build authData object for Parse
var id = response.authResponse.userID;
var access_token = response.authResponse.accessToken;
var expiration_date = new Date();
expiration_date.setSeconds(expiration_date.getSeconds() + response.authResponse.expiresIn);
expiration_date = expiration_date.toISOString();
var authData = {
"facebook" : {
"id" : id,
"access_token" : access_token,
"expiration_date" : expiration_date
}
};
// log in with Parse
Parse.FacebookUtils.logIn(authData, {
success: this._fbLoginSuccess,
error: this._fbLoginError
});
}
}, this.FB_PERMISSIONS);
The authData object I create is based on this format and this API.
How can I fix this? I've had no luck with using Parse.FacebookUtils.logIn with the standard permissions parameter (on mobile web and with PhoneGap), which is why I'm authenticating without it and using the authData parameter instead.
Any ideas? Thanks.
Parse.FacebookUtil.logIndoesn't work, so instead I log them in with the regular FB SDK and then use the authData to log them in through Parse. – Garrett Oct 18 '12 at 21:21