Hello so I am just starting out with the Facebook iOS SDK and I can sign in to Facebook easy but I am having problems figuring out how to get the users full name and displaying it in a UILabel. Also I am doing this from a UIViewController and so far everything I have seen on the internet has taken place in the app delegate, however, I don't want it to be done from the delegate, it just is not the right place to do this i want it in a UIViewController so when a button is pressed you can sign in to Facebook. The Facebook SDK just seems complicated right now as its my first time using it.
EDIT: okay heres some of my code. This is in the view controller:
-(void)createfbInstance {
Facebook* fb = [[Facebook alloc] initWithAppId:FB_APP_ID andDelegate:self];
self.facebook = fb;
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"FBAccessTokenKey"]
&& [defaults objectForKey:@"FBExpirationDateKey"]) {
facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}
if (![facebook isSessionValid]) {
NSArray* permissions = [[NSArray alloc] initWithObjects:@"user_about_me", nil];
[facebook authorize:permissions];
}
}
So I just set it up like the Facebook tutorial Then I try to send a request with graph path:
- (void)fbDidLogin {
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
[defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
[defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
[defaults synchronize];
FBAppDelegate* appDelegate = (FBAppDelegate*)[[UIApplication sharedApplication] delegate];
[appDelegate.facebook requestWithGraphPath:@"name" andDelegate:self];
}
Then try and receive the request:
- (void)request:(FBRequest *)request didLoad:(id)result {
}
Sorry I got frustrated and deleted the code out of that method. and then in the delegate I have the Facebook property
@property (nonatomic, retain) Facebook* Facebook;
There is other code in the file but this seemed like the most important code.
createfbInstance) in the app delegate? You said in your edit it's in the view controller, if that's true put that method in the delegate and make sure it gets called. Same thing withfbDidLogin, which is a delegate method forFBSessionDelegatethen remove the last two lines offbDidLoginand put it in your view controller somewhere. – Matt S. Jul 18 '12 at 18:15[appDelegate.facebook requestWithGraphPath:@"me" andDelegate:self];instead ofrequestWithGraphPath:@"name"The graph path is the API method that you will call, the list can be found at graph.facebook.com – Matt S. Jul 19 '12 at 2:28