objective c - How can I show my facebook time line in my iOS App? -
hello in trouble facebook time line. m working app in want show facebook time line. new concept. not able understand how that? if there example or code gives me idea helpfull. in advance. , please don't mark negative if unable answering it. thanks.
you can use fbsdkgraphrequest
. check out https://developers.facebook.com/docs/graph-api/reference/v2.10/user/feed
fbsdkgraphrequest *request = [[fbsdkgraphrequest alloc] initwithgraphpath:@"/me/feed" parameters:params httpmethod:@"get"]; [request startwithcompletionhandler:^(fbsdkgraphrequestconnection *connection, id result, nserror *error) { // handle result }];
Comments
Post a Comment