我想显示喜欢页面facebook的数量。 我不需要像按钮那样,只显示真实的数字页面。
我已经有任何教程,但我没有发现这指定功能。
有人能帮帮我吗?
答案 0 :(得分:1)
试试这个:(例如)
NSData *Data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://graph.facebook.com/http://www.imdb.com/title/tt0117500/"]];
NSJSONSerialization *json = [NSJSONSerialization JSONObjectWithData:Data options:NSJSONReadingAllowFragments error:nil];
NSString *totalLikes = [json valueForKey:@"likes"]
DLog(@"%@",totalLikes);