0

这是我登录 Twitter 的旧代码:

   NSURL *url = [NSURL URLWithString:@"http://api.twitter.com/1/account/verify_credentials.json"];
    TWRequest *req = [[TWRequest alloc] initWithURL:url
                                         parameters:nil
                                      requestMethod:TWRequestMethodGET];

// Important: attach the user's Twitter ACAccount object to the request
req.account = self.acAcount;

_strFullName=nil;
self.strUsername =nil;
[req performRequestWithHandler:^(NSData *responseData,
                                 NSHTTPURLResponse *urlResponse,
                                 NSError *error) {

    // If there was an error making the request, display a message to the user

它不再起作用了。

我得到了这个回应。

那么我应该如何修改代码呢?

4

1 回答 1

0

我只是将代码更改为:

    NSURL *url = [NSURL URLWithString:@"http://api.twitter.com/1.1/account/verify_credentials.json"];
于 2013-07-16T06:58:05.910 回答