我是iphone开发者的初学者。我想通过 facebook 登录我的应用程序。我有使用 facebook 图形 API。我已经通过了 doGraphGet 方法,但它没有提供电子邮件 ID 和密码。我正在使用下面的代码..
-(IBAction)getMeButtonPressed:(id)sender {
FbGraphResponse *fb_graph_response = [fbGraph doGraphGet:@"me" withGetVars:nil];
NSLog(@"getMeButtonPressed: %@", fb_graph_response.htmlResponse);
}
它返回的响应
id、firstname、lastname、name、link、username、gender 但它不提供电子邮件 ID 和密码
所以,给出适用于我的代码的任何建议和源代码..