我们如何使用facebook graph api获得用户的生日?

时间:2015-01-27 11:43:29

标签: ios objective-c facebook-graph-api

我正在尝试登录登录的Facebook用户的日期。我尝试了在Facebook开发者网站上提到的代码,但我还没有生日约会。

我已尝试使用以下代码获取用户信息:

  [FBRequestConnection startForMeWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
        if (!error) {
            // Success! Include your code to handle the results here
            NSLog(@"user info: %@", result);
        } else {
            // An error occurred, we need to handle the error
            // See: https://developers.facebook.com/docs/ios/errors
        }
          }];

1 个答案:

答案 0 :(得分:1)

根据facebook

  • 除了" user_friends"," public_profile"之外的任何权限。和 "电子邮件"需要 Facebook应用审核
  • 虽然如果您使用管理员帐户登录,您将获得开发所需的所有信息。