3

iOS 6 でソーシャル フレームワークを使用して Facebook ページを気に入ったり、Twitter ユーザーをフォローしたりする簡単な方法はありますか?

フレームワークを使用して、ユーザーの facebook/twitter アカウントにメッセージを投稿できます。

あなたの助けは大歓迎です!

4

2 に答える 2

3

ツイッターでユーザーをフォローする方法です

-(void)followTwitter{

ACAccountStore *account = [[ACAccountStore alloc] init];
ACAccountType *accountType = [account accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];

[account requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error)
 {
     NSLog(@"this is the request of account ");
     if (granted==YES) {
         NSArray *arrayOfAccounts = [account accountsWithAccountType:accountType];
         if ([arrayOfAccounts count] > 0)
         {
             // Keep it simple, use the first account available
             ACAccount *acct = [arrayOfAccounts objectAtIndex:0];

             NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"FollowedUserNameHere",@"screen_name",@"TRUE",@"follow", nil];
             TWRequest *request = [[TWRequest alloc] initWithURL:[NSURL URLWithString:@"https://api.twitter.com/1.1/friendships/create.json"] parameters:dictionary requestMethod:TWRequestMethodPOST];

             [request setAccount:acct];

             [request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
              {
                  if ([urlResponse statusCode] == 200)
                  {
                      // The response from Twitter is in JSON format
                      // Move the response into a dictionary and print
                      NSError *error;
                      NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];
                      NSLog(@"Twitter response: %@", dict);
                  }
                  else
                      NSLog(@"Twitter error, HTTP response: %i", [urlResponse statusCode]);
              }];
         }     
     }
 }];

}

このリンクをたどって、Facebookページを気に入ってください

http://angelolloqui.blogspot.jp/2010/11/facebook-like-button-on-ios.html

于 2012-11-27T09:26:16.947 に答える
0

iOS 6.0 の時点で、Social フレームワークTWRequestを支持して廃止されたことに注意する必要があります。たとえば、 Twitter SLRequest performRequestWithHandler - Could not prepare the URL requestSLRequest

于 2014-11-03T21:55:28.613 に答える