I'm creating a simple twitter client, and the first view the User selects the account (up here okay) but when he selects and switches to the second view (Timeline) appears an error on the console:
errors =
code = 215;
message = "Bad Authentication data";
Code of get accounts:
- (void)fetchData
{
if (accountStore == nil) {
self.accountStore = [[ACAccountStore alloc] init];
if (accounts == nil) {
accountType = [self.accountStore
accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[self.accountStore requestAccessToAccountsWithType:accountType options:nil completion:^(BOOL granted, NSError *error) {
if(granted) {
self.accounts = [self.accountStore accountsWithAccountType:accountType];
dispatch_sync(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
}
}];
}
}
}
Code of GetTimeline:
- (void)getTimeLine {
accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[account requestAccessToAccountsWithType:accountType
options:nil completion:^(BOOL granted, NSError *error)
{
if (granted == YES)
{
NSArray *arrayOfAccounts = [accountfa
accountsWithAccountType:accountType];
if ([arrayOfAccounts count] > 0)
{
NSURL *requestURL = [NSURL URLWithString:@"http://api.twitter.com/1.1/statuses/home_timeline.json"];
NSMutableDictionary *parameters =
[[NSMutableDictionary alloc] init];
[parameters setObject:@"20" forKey:@"count"];
[parameters setObject:@"1" forKey:@"include_entities"];
SLRequest *postRequest = [SLRequest
requestForServiceType:SLServiceTypeTwitter
requestMethod:SLRequestMethodGET
URL:requestURL parameters:nil];
postRequest.account = account;
[postRequest performRequestWithHandler:
^(NSData *responseData, NSHTTPURLResponse
*urlResponse, NSError *error)
{
self.dataSource = [NSJSONSerialization
JSONObjectWithData:responseData
options:NSJSONReadingMutableLeaves
error:&error];
if (self.dataSource.count != 0) {
dispatch_async(dispatch_get_main_queue(), ^{
NSLog(@"%@",dataSource);
[self.tableView reloadData];
});
}
}];
}
} else {
// Handle failure to get account access
}
}];
}
and Code of Segue :
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([[segue identifier] isEqualToString:@"showDetail"]) {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
TimelineViewController *deta = [[TimelineViewController alloc]init];
deta.account = (self.accounts)[[indexPath row]];
}
}