Logging in via Twitter and trying to get the Users screen name. The screen name produces a null value each time. Any ideas?
PFUser *currentUser = [PFUser currentUser];
[PFTwitterUtils logInWithBlock:^(PFUser *user, NSError *error) {
if (!user) {
NSLog(@"Uh oh. The user cancelled the Twitter login.");
return;
} else if (user.isNew) {
twitterScreenName = [PFTwitterUtils twitter].screenName;
NSLog(@"%@",[PFTwitterUtils twitter].screenName);
NSString * requestString = [NSString stringWithFormat:@"https://api.twitter.com/1.1/users/show.json?screen_name=%@", twitterScreenName ];
NSURL *verify = [NSURL URLWithString:requestString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:verify];
[[PFTwitterUtils twitter] signRequest:request];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
NSError *error;
NSDictionary* result = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error];
if (!error) {
user.username =twitterScreenName;
user[@"name"]= result[@"name"];
user[@"profileDescription"] = result[@"description"];
user[@"imageURL"] = [result[@"profile_image_url_https"] stringByReplacingOccurrencesOfString:@"_normal" withString:@"_bigger"];
[user saveEventually];
}
}];
[self performSegueWithIdentifier: @"username" sender: self];
}
Here is how I do it:
[PFTwitterUtils logInWithBlock:^(BOOL succeeded, NSError *error) {
if ([PFTwitterUtils isLinkedWithUser:[PFUser currentUser]]) {
NSURL *info = [NSURL URLWithString:@"https://api.twitter.com/1.1/account/settings.json"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:info];
[[PFTwitterUtils twitter] signRequest:request];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
if (!!data) {
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];
NSString *userName = dict[@"screen_name"];
userName = [userName stringByReplacingOccurrencesOfString:@"Twitter:" withString:@""];
PFUser *user = [PFUser currentUser];
user[@"Twitter"] = userName;
[user saveEventually];
} else {
//uh oh, no twitter response
}
}];
} else {
//uh oh, failed login
}
}];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With