0

SLRequest クラスを使用して Twitter Streaming API からデータを取得しようとしています。以下のコードに記載されているエンドポイントとパラメーターを使用すると、プログラムが「ハング」し、JSON データが出力されません。Twitter 開発 Web サイトhttps://dev.twitter.com/docs/streaming-apis/parameters#withの例に基づいてエンドポイントを使用しています。特定の場所でツイートをリクエストしています。

このコードを使用して、REST API (コードと要求は含まれていますがコメントアウトされています) を使用してタイムラインをクエリすると、プログラムはハングせず、有効な応答が得られます。

ストリーミング API を使用してデータにアクセスするために実装する必要があるコードは他にありますか? どのような追加の修正または変更を行う必要がありますか?

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

// Ask the user permission to access his account
[accountStore requestAccessToAccountsWithType:twitterAccountType options:nil completion:^(BOOL granted, NSError *error) {
    if (granted == NO) {
        NSLog(@"-- error: %@", [error localizedDescription]);
    }
    if (granted == YES){

       /***************** Create  request using REST API*********************
        ***************** This URL is functional and returns valid data *****
        NSURL * url = [NSURL URLWithString:@"https://userstream.twitter.com/1.1/user.json"];
         SLRequest * request = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodGET URL:url parameters:@{@"screen_name": @"your_twitter_id"}];
        ***************************************************************/

        // Create request using Streaming API Endpoint
        NSURL * url = [NSURL URLWithString:@"https://stream.twitter.com/1.1/statuses/filter.json"];

        NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
        [params setObject:@"track" forKey:@"twitter&"];
        [params setObject:@"locations" forKey:@"-122.75,36.8,-121.75,37.8"];

        SLRequest * request = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:url parameters:params];

        NSArray * twitterAccounts = [accountStore accountsWithAccountType:twitterAccountType];

        if ([twitterAccounts count] == 0) {
            (NSLog(@"-- no accounts available"));
        } else if ([twitterAccounts count] >0){
            [request setAccount:[twitterAccounts lastObject]];
            NSLog([request.account description]);
            NSLog(@"Twitter handler of user is %@", request.account.username);

            // Execute the request
            [request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
                NSError * jsonError = nil;
                NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData options:NSJSONReadingAllowFragments error:&jsonError];

                [[NSOperationQueue mainQueue] addOperationWithBlock:^{
                    // NSLog(@"-- json Data is %@", json);
                    NSLog([json description]);
                }];

            }];

        }
    }

}];
4

1 に答える 1

1

SLRequest は、ストリーミング API ではうまく機能しません。

STTwitterで行う方法は次のとおりです。

self.twitter = [STTwitterAPI twitterAPIOSWithAccount:account];

[_twitter verifyCredentialsWithSuccessBlock:^(NSString *username) {

    NSLog(@"-- access granted for %@", username);

    [_twitter postStatusesFilterUserIDs:nil
                        keywordsToTrack:@[@"twitter"]
                  locationBoundingBoxes:@[@"-122.75,36.8,-121.75,37.8"]
                              delimited:nil
                          stallWarnings:nil
                          progressBlock:^(id response) {
        NSLog(@"-- %@", response);
    } stallWarningBlock:^(NSString *code, NSString *message, NSUInteger percentFull) {
        NSLog(@"-- stall warning");
    } errorBlock:^(NSError *error) {
        NSLog(@"-- %@", [error localizedDescription]);
    }];

} errorBlock:^(NSError *error) {
    NSLog(@"-- %@", [error localizedDescription]);
}];

内部的に、STTwitter はNSURLConnectionからのリクエストでインスタンスを構築します-[SLRequest preparedURLRequest]必要に応じて、このトリックをコードで複製できます。

于 2014-01-29T14:34:42.373 に答える