我正在制作推特客户端应用。客户端的要求之一也是将特定推文标记为应用程序中的最爱。我正在搜索这两天但没有任何线索..如果有可能通过ios 5的twitter API没有,那么任何人都可以指导我。如果是,那怎么??
答案 0 :(得分:2)
是的,可以使用Twitter和帐户框架:
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) {
if(granted) {
// Get the list of Twitter accounts.
NSArray *accountsArray = [accountStore accountsWithAccountType:accountType];
// For the sake of brevity, we'll assume there is only one Twitter account present.
// You would ideally ask the user which account they want to tweet from, if there is more than one Twitter account present.
if ([accountsArray count] > 0) {
// Grab the initial Twitter account to tweet from.
ACAccount *twitterAccount = [accountsArray objectAtIndex:0];
NSString* urlString = [NSString stringWithFormat:@"http://api.twitter.com/1/favorites/create/%d.json", tweetID];
TWRequest *postRequest = [[TWRequest alloc] initWithURL:[NSURL URLWithString:urlString]
parameters:nil
requestMethod:TWRequestMethodPOST];
[postRequest setAccount:twitterAccount];
[postRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
NSString *output = [NSString stringWithFormat:@"HTTP response status: %i", [urlResponse statusCode]];
NSLog(@"%@", output);
}];
}
}
}];
}
另请参阅Twitter REST API文档:https://dev.twitter.com/docs/api/1/post/favorites/create/%3Aid