Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 facebook 上创建了新应用并设置了许可电子邮件和生日。当我点击预览时,它说基本信息、电子邮件和生日将按预期进行,但是当我在我的 iphone 应用程序上运行它时,它只显示基本信息并且不显示电子邮件或生日..这是一个错误吗?
这不是错误,在获得许可后,要获取电子邮件,您必须将 FBGraphUser 设置为 NSDictionary,
例如
NSDictionary<FBGraphUser> *user user.birthday //can get user's birthday [user objectForKey:@"email"] //to get user's email
希望它的作品:)
韦恩