I am using Sharekit for Facebook and Twitter and i would like to get the Facebook account details like User id,Profile Name etc.please give your suggestions and help.I had got the details before but now i am not able to retrieve it.
Please find the code below,
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"kSHKFacebookUserInfo"]){
NSDictionary *facebookUserInfo = [[NSUserDefaults standardUserDefaults] objectForKey:@"kSHKFacebookUserInfo"];
fbUseremail = [facebookUserInfo objectForKey:@"email"];
NSLog(@"FBid-- %@",fbUseremail);
}
if ([[NSUserDefaults standardUserDefaults] objectForKey:@"kSHKFacebookUserInfo"]){
NSDictionary *facebookUserInfo = [[NSUserDefaults standardUserDefaults] objectForKey:@"kSHKFacebookUserInfo"];
fbUserName = [facebookUserInfo objectForKey:@"name"];
NSLog(@"FBName-- %@",fbUserName);
}
Now it gets crashed as the facebookUserInfo is NULL.