iphone - get all fb person name same as given name in facebook ios -
friends developing facebook related application. in application user can able search person name. first have tried graph-api search. got list of peoples peoples missing, because have set privacy setting. when type name in facebook shows person name same given name. and list of peoples order different. so issue is 1)not getting users list same given name 2) why ordering of data different?. i using code getting person name list nsmutabledictionary *variables = [nsmutabledictionary dictionarywithcapacity:2]; [variables setobject:@"priya" forkey:@"q"]; [variables setobject:@"user" forkey:@"type"]; // [variables setobject:@"post" forkey:@"type"]; fbgraphresponse *fb_graph_response = [fbgraph dographget:@"search" withgetvars:variables]; nslog(@"raw html: %@", fb_graph_response.htmlresponse); is other way same result?