簡體   English   中英

在IOS6中邀請Facebook朋友

[英]Invite Facebook Friends in IOS6

我想獲取Facebook朋友列表並為我的應用發送邀請。

我嘗試了以下代碼:

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

    ACAccountType *facebookAccountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
    NSArray *accounts = [accountStore accountsWithAccountType:facebookAccountType];


    NSLog(@"%@",accounts); `******//I got the null array ***********`
    ACAccount *facebookAccount = [accounts lastObject];
    NSString *acessToken = [NSString stringWithFormat:@"%@",facebookAccount.credential.oauthToken];

    NSDictionary *parameters = @{@"access_token": acessToken};
    NSURL *feedURL = [NSURL URLWithString:@"https://graph.facebook.com/me/friends"];
    SLRequest *feedRequest = [SLRequest
                              requestForServiceType:SLServiceTypeFacebook
                              requestMethod:SLRequestMethodGET
                              URL:feedURL
                              parameters:parameters];
    feedRequest.account = facebookAccount;
    [feedRequest performRequestWithHandler:^(NSData *responseData,
                                             NSHTTPURLResponse *urlResponse, NSError *error)
     {
         NSLog(@"%@",[[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]);
     }];

在iOS 6中,使用facebook SDK:

#import <FacebookSDK/FacebookSDK.h>

並致電:

[FBRequestConnection startForMyFriendsWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
}];

結果應該是您要查找的數據。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM