Questions tagged [parsefacebookutils]
44 questions
2
votes
2 answers
PFFacebookUtils is not resolved after upgrading parse cocoapod
I just updated the pod file on my project to increase parse version from
1.2.19 to 1.5.0, now I'm getting compilation error for PFFacebookUtils class as the following
Use of undeclared identifier 'PFFacebookUtils'

Mahmoud Adam
- 5,772
- 5
- 41
- 62
2
votes
0 answers
Android app crashing after calling ParseFacebookUtils.initialize() method
I am trying to integrate facebook with my app. The method is called this way. R.string.app_id contains the app id that I got from facebook.
public class App extends Application {
@Override public void onCreate() {
super.onCreate();
…

user3120072
- 83
- 5
2
votes
1 answer
Android ParseFacebookUtils flow with login and logout
I've implemented a Parse & Facebook flow in my Android app using ParseFacebookUtils.
TL;DR
Created a Parse user after logging in (and linking) with Facebook
(ParseFacebookUtils.logIn)
Logged out (ParseFacebookUtils.logOut &
ParseUser.logOut)…

Dvir
- 5,049
- 1
- 23
- 32
1
vote
0 answers
Facebook Login - Invalid Key Hash. The key hash xxx...x does not match any stored key hashes
I am trying to add Facebook Login to my Android app (using Parse) with the code below.
List permissions = Arrays.asList("public_profile", "email");
ParseFacebookUtils.logInWithReadPermissionsInBackground(this, permissions, new…

user1406716
- 9,565
- 22
- 96
- 151
1
vote
0 answers
Complications with ParseFacebookUtils, reading permissions
i'm tryng to integrate facebook login in my android application. For now i get a new row in Parse Backend about the logged user which contains his real name, some weird value(ex:SnvvKEsIv6tX7...) in his userName, and an authData which is Json and…

Anas
- 29
- 5
1
vote
3 answers
Parse Facebook logInInBackgroundWithReadPermissions (Swift)
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…

senty
- 12,385
- 28
- 130
- 260
1
vote
1 answer
Framework Errors in Parse App ParseFacebookUtils
I updated the Parse Framework to the newest version in my app, and now I am getting a TON of errors in my app, mostly Framework related:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_FBSDKAccessToken", referenced from:
…

user717452
- 33
- 14
- 73
- 149
1
vote
0 answers
Parse and FBv4 Swift share picture
Stuck on posting a picture to FB, using Facebook SDK v4 and ParseHelperv4 in Swift.
User is created and logged in with read persimmons and I can get user info like mail name and so on, as for FBSDKAccessToken.currentAccessToken() it is always…

Waylli
- 11
- 1
1
vote
1 answer
Android - Facebook session CLOSED when using ParseFacebookUtils.logIn
I am using Facebook and Parse SDK in my Android app. I followed this tutorial for Facebook login and authentication, changing between fragments for login fragment and main menu fragment depending on whether the session state is OPENED in the…

pp31630
- 41
- 7
1
vote
0 answers
iOS Facebook permissions listed twice on PFFacebookUtils logInWithPermissions
I am using Parse and I am trying to log users in with PFFacebookUtils logInWithPermissions:block: method. I am asking only for user_friends permission and once, but here is what I'm getting:
The login process works fine though. Here is my…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
1
vote
1 answer
Apple Mach-O Linker Error when updating Parse.Framework
I just tried updating my Parse.Framework to the latest framework. Previously, I had v. 1.2 or so from back in April.
I removed the original Parse Framework and followed the steps and dependencies to add Parse.
FYI - if I build on my iPhone, the…

flynn
- 1,572
- 2
- 12
- 26
1
vote
1 answer
ParseFacebookUtils.logIn() creates new user every time user logs into android app
There seems to be lots of people with issues using parse.com's ParseFacebookUtils.logIn() method and I am experiencing a very strange issue myself (none of my issues are similar to those I have seen here on SO).
I have been developing an application…

Max Worg
- 2,932
- 2
- 20
- 35
1
vote
1 answer
Unity NullReference when trying to use ParseFacebookUtils to log in to parse
I'm not to familiar with the SO user tags, so I hope that this works: @aaron
This is the closest question that I could find that relates to my issue, but it's not exactly the issue. (I tried Google, Bing, and SO's own…

CherryCoke
- 309
- 3
- 17
0
votes
0 answers
ParseFacebookUtils.logInWithReadPermissionsInBackground Permission denied
My User class is set to protect
I'm trying to sign-up using the ParseFacebookUtils.logInWithReadPermissionsInBackground method, but it's not working, I'm getting the message: "com.parse.ParseRequest$ParseRequestException: Permission denied, user…

Ita
- 29
- 4
0
votes
0 answers
What "Facebook is not supported service" means using ParseFacebookUtils-v4?
I want to implement a Facebook log in, I was actually using Parse for a few months ago, but now I get the "facebook is not a supported service". I followed the Parse guide and I don't know what is going on. Please help!
Gradle file:
apply plugin:…

Alejandro Lagos
- 179
- 5
- 19