一旦用户发送了某些内容,我就需要区分他使用的Twitter帐号。让我们考虑用户在手机上配置一个或多个帐户。
在推文成功后我需要知道这一点,所以适当的地方就是回调。我尝试使用ACAccountStore获取帐户,但它提供了一个数组,其中包含手机上设置的所有帐户,而不是关于最后使用的帐户的线索(甚至不是数组的顺序)。
有没有人知道TWTweetComposeViewController是否记得这个帐号,以及如何获取它?
由于
我的代码:
if ([TWTweetComposeViewController canSendTweet])
{
TWTweetComposeViewController *tweetSheet =
[[TWTweetComposeViewController alloc] init];
[tweetSheet setInitialText:@"initial text"];
[tweetSheet addImage:[UIImage imageNamed:image]];
// Callback
tweetSheet.completionHandler = ^(TWTweetComposeViewControllerResult result) {
// if tweet was successful
if(result == TWTweetComposeViewControllerResultDone) {
// Get the accounts
account = [[ACAccountStore alloc] init];
ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[account requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error)
{
// if access granted I populate the array
if (granted == YES) {
NSArray *arrayOfAccounts = [account accountsWithAccountType:accountType];
ACAccount *account1 = [arrayOfAccounts objectAtIndex:0];
ACAccount *account2 = [arrayOfAccounts objectAtIndex:1];
NSString *username1 = account1.username;
NSString *username2 = account2.username;
// Always same order
NSLog(userName1);
NSLog(userName2);
}
}];
[self furtherMethodsInCaseOfSuccessfulTweet];
} else if(result == TWTweetComposeViewControllerResultCancelled) {
NSLog(@"twit canceled");
}
[self dismissViewControllerAnimated:YES completion:nil];
};
[self presentModalViewController:tweetSheet animated:YES];
}
else
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"No tweet is possible on this device" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alertView show];
}
}
答案 0 :(得分:3)
我找到了办法。
相反,在TWTweetComposeViewController无法查找用户名时,可以使用GET users/lookup来获取ACAccountStore收集的名称。
http://api.twitter.com/1/users/lookup.xml?screen_name=username1,username2 (使用json代替xml)
解析结果我们可以得到用户最后一条推文的日期/时间(“状态”标签),瞧,我们使用了最后一个帐户。 另外,您可以在console上测试qwery结果。
感谢@theSeanCook