web-dev-qa-db-ja.com

Facebook iOS 7からユーザー名とプロフィール写真を取得する

Facebookから情報を取得するためのチュートリアルをたくさん読みましたが、今のところ失敗しました。 Facebookからユーザー名とプロフィール写真を取得したいだけです。

- (IBAction)login:(id)sender {

   [FBSession openActiveSessionWithReadPermissions:@[@"email",@"user_location",@"user_birthday",@"user_hometown"]
                                   allowLoginUI:YES
                              completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {

   switch (state) {
      case FBSessionStateOpen:
         [[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) {
            if (error) {
               NSLog(@"error:%@",error);
            } else {
               // retrive user's details at here as shown below
               NSLog(@"FB user first name:%@",user.first_name);
               NSLog(@"FB user last name:%@",user.last_name);
               NSLog(@"FB user birthday:%@",user.birthday);
               NSLog(@"FB user location:%@",user.location);
               NSLog(@"FB user username:%@",user.username);
               NSLog(@"FB user gender:%@",[user objectForKey:@"gender"]);
               NSLog(@"email id:%@",[user objectForKey:@"email"]);
               NSLog(@"location:%@", [NSString stringWithFormat:@"Location: %@\n\n",
                                                                         user.location[@"name"]]);

             }
        }];
        break;
        case FBSessionStateClosed:
        case FBSessionStateClosedLoginFailed:
           [FBSession.activeSession closeAndClearTokenInformation];
        break;
        default:
        break;
       }

   } ];


 }

このコードを使用して情報を取得しましたが、情報を取得できません。それについて私を助けてもらえますか?またはそれを読むためにチュートリアルを好むことができますか? developer.facebook.comでチュートリアルを読みました。

ご関心をお寄せいただきありがとうございます。

34
Le'Kirdok

これは、ユーザーのプロフィール写真を取得するために見つけた最も簡単な方法です。

[[FBRequest requestForMe] startWithCompletionHandler:^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *FBuser, NSError *error) {
    if (error) {
      // Handle error
    }

    else {
      NSString *userName = [FBuser name];
      NSString *userImageURL = [NSString stringWithFormat:@"https://graph.facebook.com/%@/picture?type=large", [FBuser objectID]];
    }
  }];

使用できるその他のクエリパラメータは次のとおりです。

  • タイプ:小さい、普通、大きい、正方形
  • :<値>
  • 高さ:<値>
    • widthheightの両方を使用して、トリミングされたアスペクト塗りつぶし画像を取得します
80
Guilherme
if ([FBSDKAccessToken currentAccessToken]) {
    [[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{ @"fields" : @"id,name,picture.width(100).height(100)"}]startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
        if (!error) {
            NSString *nameOfLoginUser = [result valueForKey:@"name"];
            NSString *imageStringOfLoginUser = [[[result valueForKey:@"picture"] valueForKey:@"data"] valueForKey:@"url"];
            NSURL *url = [[NSURL alloc] initWithURL: imageStringOfLoginUser];
            [self.imageView setImageWithURL:url placeholderImage: nil];
        }
    }];
}
38
Hemanshu Liya

次のグラフリクエストを行います。

/me?fields=name,picture.width(720).height(720){url}

そして、あなたは本当に大きくてクールなプロフィール写真を得ます:

_{
  "id": "459237440909381",
  "name": "Victor Mishin", 
  "picture": {
    "data": {
      "url": "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xpf1/t31.0-1/c628.148.1164.1164/s720x720/882111_142093815957080_669659725_o.jpg"
    }
  }
}
_

追伸/me?fields=picture.type(large)は私のためにそれをしません。

6
Victor M

次のようにユーザー名と画像を取得することもできます。

[FBSession openActiveSessionWithReadPermissions:@[@"basic_info"]
                                           allowLoginUI:YES
                                      completionHandler:
         ^(FBSession *session, FBSessionState state, NSError *error) {

             if(!error && state == FBSessionStateOpen) {
                 { [FBRequestConnection startWithGraphPath:@"me" parameters:[NSMutableDictionary dictionaryWithObjectsAndKeys:@"id,name,first_name,last_name,username,email,picture",@"fields",nil] HTTPMethod:@"GET" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
                             NSDictionary *userData = (NSDictionary *)result;
                             NSLog(@"%@",[userData description]);
                         }];
                 }
             }
         }];

Output:
picture =     {
        data =         {
            "is_silhouette" = 0;
            url = "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-frc1/t5.0-1/xxxxxxxxx.jpg";
        };
    };
    username = xxxxxxxxx;

パラメータを画像とユーザー名のままにして、要件に基づいて他のものを除外することができます。 HTH。

5
akdsouza

これは、Facebook SDK 4およびSwiftのコードです。

if FBSDKAccessToken.currentAccessToken() != nil {
    FBSDKGraphRequest(graphPath: "me", parameters: nil).startWithCompletionHandler({ (connection, result, error) -> Void in
        println("This logged in user: \(result)")
        if error == nil{
            if let dict = result as? Dictionary<String, AnyObject>{
                println("This is dictionary of user infor getting from facebook:")
                println(dict)
            }
        }
    })
}

質問への更新:

公開プロフィール画像をダウンロードするには、辞書からfacebook IDを取得します:

let facebookID:NSString = dict["id"] as AnyObject? as NSString

次に、facebook IDを使用してプロファイル画像のAPIをグラフ化するリクエストを呼び出します。

let pictureURL = "https://graph.facebook.com/\(fbUserId)/picture?type=large&return_ssl_resources=1"

サンプルコード:

    let pictureURL = "https://graph.facebook.com/\(fbUserId)/picture?type=large&return_ssl_resources=1"
    //
    var URLRequest = NSURL(string: pictureURL)
    var URLRequestNeeded = NSURLRequest(URL: URLRequest!)
    println(pictureURL)



    NSURLConnection.sendAsynchronousRequest(URLRequestNeeded, queue: NSOperationQueue.mainQueue(), completionHandler: {(response: NSURLResponse!,data: NSData!, error: NSError!) -> Void in
        if error == nil {
            //data is the data of profile image you need. Just create UIImage from it

        }
        else {
            println("Error: \(error)")
        }
    })
1
grandagile

実際に「 http://graph.facebook.com/ /picture?type = small」を使用してユーザーまたはその友人のプロフィール画像を取得するのは遅いです。

FBProfilePictureViewオブジェクトをビューに追加し、そのprofileIDプロパティでユーザーのFacebook IDを割り当てるより良い、より速い方法。

例:FBProfilePictureView * friendsPic;

friendsPic.profileID = @ "1379925668972042";

0
Hashim Akhtar

このライブラリを確認してください: https://github.com/jonasman/JNSocialDownload

あなたもTwitterを取得することができます

0
João Nunes