2012-03-17 81 views
0

我正在制作twitter客户端应用程序。客户端的一个要求也是将特定推文标记为应用程序的最爱。我在这寻找了两天,但没有线索..任何一个PLZ可以指导我,如果有可能通过iOS 5的twitter API不这样做。如果是的话那怎么样?通过iOS 5制作任何推特最爱API twitter

回答

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

+0

感谢的人!!!!!!!!!它真的很嚣张...... – sns 2012-03-20 17:47:52