iphone - iOS - Get Interests from LinkedIn using LinkedIn API -


is possible user's interest linkedin using linkedin api. can user basic details, dont know how interest list. searched in google, nothing wll helps me. regarding appreciated. thanks.

at found answer, simplest one, takes these time find out,

just added interests option in following url,

nsurl* url = [nsurl urlwithstring:@"http://api.linkedin.com/v1/people/~:(id,first-name,last-name,email-address,picture-url,public-profile-url,interests)"];  oamutableurlrequest *request = [[oamutableurlrequest alloc] initwithurl:url                                 consumer:consumer                                    token: self.accesstoken                                 callback:nil                        signatureprovider:nil];  [request setvalue:@"json" forhttpheaderfield:@"x-li-format"];  oadatafetcher *fetcher = [[oadatafetcher alloc] init]; [fetcher fetchdatawithrequest:request                      delegate:self             didfinishselector:@selector(profileapicallresult:didfinish:)               didfailselector:@selector(profilecancel:didfail:)]; 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -