5

我在 twitter 上使用 SLRequest,直到几天前,下面的代码一切正常,但现在响应为空,错误描述为空,这是我一直使用的代码:

ACAccountStore *accountStoreTw = [[ACAccountStore alloc] init];

ACAccountType *accountTypeTw = [accountStoreTw accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[accountStoreTw requestAccessToAccountsWithType:accountTypeTw options:NULL completion:^(BOOL granted, NSError *error) {
    if(granted) {

        FMDatabase *db = [FMDatabase databaseWithPath:[self databasePath]];

        if ([db open]) {
            FMResultSet *tw_name_q = [db executeQuery:@"SELECT tw_username FROM settings WHERE id = 1"];

            NSString *tw_name = @"";

            while ([tw_name_q next]) {
                tw_name = [tw_name_q stringForColumn:@"tw_username"];
            }

            if (![tw_name isEqualToString:@""]) {

                NSArray *accountsArray = [accountStoreTw accountsWithAccountType:accountTypeTw];

                for (ACAccount *tw_account in accountsArray) {

                    if ([[tw_account username] isEqualToString:tw_name]) {

                        SLRequest* twitterRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter
                                                                       requestMethod:SLRequestMethodPOST
                                                                                 URL:[NSURL URLWithString:@"http://api.twitter.com/1/statuses/update.json"]
                                                                          parameters:[NSDictionary dictionaryWithObject:msg_post forKey:@"status"]];

                        [twitterRequest setAccount:tw_account];

                        [twitterRequest performRequestWithHandler:^(NSData* responseData, NSHTTPURLResponse* urlResponse, NSError* error) {
                            NSLog(@"text response: %@", [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]);
                            NSLog(@"error: %@",error.localizedDescription);
                            NSString *output = [NSString stringWithFormat:@"HTTP response status: %i Error %d", [urlResponse statusCode],error.code];
                            NSLog(@"%@ error %@", output,error.description);

                        }];

                        break;
                    }
                }
            }
        }

        [db close];
    }

}];

现在这个日志给我这个:

text response: 
error: (null)
403 Error 0 error (null)

问题是什么?有什么办法解决吗?

4

2 回答 2

19

Twitter API 最近发生了变化。您现在只能使用 HTTPS 调用它。

您应该确保您/您的图书馆使用的 URL 以

https://api.twitter.com/1.1/

s(注意后面的额外内容http。)

于 2014-01-15T15:27:42.617 回答
0

如果您在同一个 Twitter 帐户上重复测试此代码,那么您获得 403 代码还有另一个原因:

对于每次更新尝试,更新文本都会与验证用户最近的推文进行比较。任何会导致重复的尝试都将被阻止,从而导致 403 错误。因此,一个用户不能连续两次提交相同的状态。

测试时,请务必每次将状态文本更改为不同的。或者您可以编写简单的代码为状态生成随机文本(仅用于调试时间),以防止 403 错误代码。

例子:

NSDictionary *message = @{@"status": [NSString stringWithFormat:@"Testing app %u", arc4random() % 100]};

SLRequest* twitterRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter
                                                                       requestMethod:SLRequestMethodPOST
                                                                                 URL:[NSURL URLWithString:@"http://api.twitter.com/1/statuses/update.json"]
                                                                          parameters: message];
于 2016-01-13T03:13:48.973 回答