0

Twitter ユーザーの詳細を取得するために iOS 5 の両方で TWRequest を使用する方法、

TWRequestは以前に機能していて、この方法で使用していました

 NSURL *url = [NSURL URLWithString:@"https://api.twitter.com/1/users/show.json"];
 NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:twittername,@"screen_name",nil];
                                 request = [[TWRequest alloc] initWithURL:url
                                                                      parameters:params
                                                                   requestMethod:TWRequestMethodGET];

しかし最近、Twitter は API バージョン 1 をクローズし、バージョン 1.1 を実装しました。現在、API の廃止により、上記のロジックは iOS 5 では機能しません...

iOS 6 で SLRequest を使用していますが、問題なく動作していますが、iOS 5 で Twitter ユーザーの詳細を取得する方法を知りたいです。

4

1 に答える 1

3

これを試して :

   NSURL *url = [NSURL URLWithString:@"https://api.twitter.com/1.1/users/show.json"];
   NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:twittername,@"screen_name",nil];
   request = [[TWRequest alloc] initWithURL:url parameters:params requestMethod:TWRequestMethodGET];                                                                 

    ACAccountStore *accountStore = [[ACAccountStore alloc] init];
    ACAccountType *twitterAccountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
    NSArray *twitterAccounts = [accountStore accountsWithAccountType:twitterAccountType];

    // Runing on iOS 6
    if (NSClassFromString(@"SLComposeViewController") && [SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
    {
        [accountStore requestAccessToAccountsWithType:twitterAccountType options:NULL completion:^(BOOL granted, NSError *error)
         {
             if (granted)
             {
                 SLRequest *request = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodGET URL:url                                      parameters:parameters];

                 [request setAccount:[twitterAccounts lastObject]];

                 dispatch_async(dispatch_get_main_queue(), ^                                
                 {

                     [NSURLConnection sendAsynchronousRequest:request.preparedURLRequest queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response1, NSData *data, NSError *error)                      
                     {                         
                         dispatch_async(dispatch_get_main_queue(), ^                                        
                         {                             
                             if (data)                                 
                             {                                 
                                 [self loadData:data];                                 
                             }                             
                         });                                         
                     }];                     
                 });
             }
         }];
    }
    else if (NSClassFromString(@"TWTweetComposeViewController") && [TWTweetComposeViewController canSendTweet]) // Runing on iOS 5
    {
        [accountStore requestAccessToAccountsWithType:twitterAccountType withCompletionHandler:^(BOOL granted, NSError *error)
         {
             if (granted)
             {
                 TWRequest *request = [[TWRequest alloc] initWithURL:url parameters:parameters requestMethod:TWRequestMethodGET];
                 [request setAccount:[twitterAccounts lastObject]];

                 dispatch_async(dispatch_get_main_queue(), ^                                
                 {                     
                     [NSURLConnection sendAsynchronousRequest:request.signedURLRequest queue:[[NSOperationQueue alloc] init] completionHandler:^(NSURLResponse *response1, NSData *data, NSError *error)                      
                     {                         
                         dispatch_async(dispatch_get_main_queue(), ^                                        
                         {                             
                             if (data)                                 
                             {                                 
                                 [self loadData:data];
                             }                             
                         });
                     }];
                 });
             }
         }];
    }
}
于 2013-07-31T07:56:52.123 に答える