Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Elizabeth Hill
1,147 PointsFacebook integration error Xcode
So I went to Facebook developers site to integrate Facebook SDK. I followed the instructions on how to integrate the Facebook SDK and create my app. I set up a URL Scheme & added a Facebook app id to the info.plist in the FacebookAppID key.
So anyways, When I finished doing those set of instructions I tried running the app on the simulator & ran into an error: 'No visible @interface for 'FBAccessTokenData' declares the sector 'userID'
Error:
+ (BOOL)userHasValidFacebookData:(PFUser *)user {
// Check that PFUser has valid fbid that matches current FBSessions userId
NSString *facebookId = [user objectForKey:kPAPUserFacebookIDKey];
return (facebookId && facebookId.length > 0 && [facebookId isEqualToString:[[[PFFacebookUtils session] accessTokenData] userID]]);